~ubuntu-branches/debian/sid/kde-baseapps/sid

« back to all changes in this revision

Viewing changes to dolphin/src/views/renamedialog.h

  • Committer: Package Import Robot
  • Author(s): Modestas Vainius, Eshat Cakar, Pino Toscano
  • Date: 2012-06-09 22:18:08 UTC
  • mfrom: (4.2.1) (6.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20120609221808-h1l0ekd5qmb8nefr
Tags: 4:4.8.4-1
* New upstream release.

[ Eshat Cakar ]
* Add watch file.
* Bump kde-sc-dev-latest build dependency to version 4:4.8.4.
* Update installed files.

[ Pino Toscano ]
* Move files of the konqueror documentation from kde-baseapps-data to
  konqueror itself.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include <KFileItem>
27
27
 
28
28
class KLineEdit;
 
29
class KIntSpinBox;
29
30
 
30
31
#include <QString>
31
32
 
49
50
private:
50
51
    void renameItems();
51
52
 
52
 
 
53
53
    /**
54
54
     * @return Returns the string \p name, where the characters represented by
55
55
     *         \p indexPlaceHolder get replaced by the index \p index.
64
64
    QString m_newName;
65
65
    KLineEdit* m_lineEdit;
66
66
    KFileItemList m_items;
 
67
    KIntSpinBox* m_spinBox;
67
68
};
68
69
 
69
70
#endif