┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels/places/placesitemeditdialog.h
diff options
context:
space:
mode:
authorMontel Laurent <[email protected]>2014-10-15 19:51:06 +0200
committerMontel Laurent <[email protected]>2014-10-15 19:51:06 +0200
commitdfd3232496970f92cf19ff57d0886ccf176c772a (patch)
tree0c1b6c846ca9f9a87ace1fa86f4057a36eb98115 /src/panels/places/placesitemeditdialog.h
parent9c6c0089c945241be8eff7225916f2b54d84c838 (diff)
Port to QDialog
Diffstat (limited to 'src/panels/places/placesitemeditdialog.h')
-rw-r--r--src/panels/places/placesitemeditdialog.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/panels/places/placesitemeditdialog.h b/src/panels/places/placesitemeditdialog.h
index bf348479c..3944b5a35 100644
--- a/src/panels/places/placesitemeditdialog.h
+++ b/src/panels/places/placesitemeditdialog.h
@@ -24,15 +24,16 @@
#ifndef PLACESITEMEDITDIALOG_H
#define PLACESITEMEDITDIALOG_H
-#include <KDialog>
+#include <QDialog>
#include <KUrl>
class KIconButton;
class KLineEdit;
class KUrlRequester;
class QCheckBox;
+class QPushButton;
-class PlacesItemEditDialog: public KDialog
+class PlacesItemEditDialog: public QDialog
{
Q_OBJECT
@@ -71,6 +72,7 @@ private:
KLineEdit* m_textEdit;
KIconButton* m_iconButton;
QCheckBox* m_appLocal;
+ QPushButton *m_okButton;
};
#endif