Diffstat (limited to 'kaddressbook/addviewdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | kaddressbook/addviewdialog.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kaddressbook/addviewdialog.h b/kaddressbook/addviewdialog.h index 8cc12f5..c3e8efd 100644 --- a/kaddressbook/addviewdialog.h +++ b/kaddressbook/addviewdialog.h | |||
@@ -22,17 +22,17 @@ | |||
22 | */ | 22 | */ |
23 | 23 | ||
24 | #ifndef ADDVIEWDIALOG_H | 24 | #ifndef ADDVIEWDIALOG_H |
25 | #define ADDVIEWDIALOG_H | 25 | #define ADDVIEWDIALOG_H |
26 | 26 | ||
27 | #include <kdialogbase.h> | 27 | #include <kdialogbase.h> |
28 | #include <qdict.h> | 28 | #include <q3dict.h> |
29 | #include <qstring.h> | 29 | #include <qstring.h> |
30 | 30 | ||
31 | class ViewFactory; | 31 | class ViewFactory; |
32 | class QButtonGroup; | 32 | class Q3ButtonGroup; |
33 | class QLineEdit; | 33 | class QLineEdit; |
34 | 34 | ||
35 | 35 | ||
36 | /** | 36 | /** |
37 | Modal dialog used for adding a new view. The dialog asks for the name of | 37 | Modal dialog used for adding a new view. The dialog asks for the name of |
38 | the view as well as the type. Someday it would be nice for this to be a | 38 | the view as well as the type. Someday it would be nice for this to be a |
@@ -40,13 +40,13 @@ class QLineEdit; | |||
40 | */ | 40 | */ |
41 | class AddViewDialog : public KDialogBase | 41 | class AddViewDialog : public KDialogBase |
42 | { | 42 | { |
43 | Q_OBJECT | 43 | Q_OBJECT |
44 | 44 | ||
45 | public: | 45 | public: |
46 | AddViewDialog( QDict<ViewFactory> *viewFactoryDict, QWidget *parent, | 46 | AddViewDialog( Q3Dict<ViewFactory> *viewFactoryDict, QWidget *parent, |
47 | const char *name = 0 ); | 47 | const char *name = 0 ); |
48 | ~AddViewDialog(); | 48 | ~AddViewDialog(); |
49 | 49 | ||
50 | QString viewName()const; | 50 | QString viewName()const; |
51 | 51 | ||
52 | QString viewType()const ; | 52 | QString viewType()const ; |
@@ -60,14 +60,14 @@ class AddViewDialog : public KDialogBase | |||
60 | /** | 60 | /** |
61 | Called when the user changes the text in the name of the view. | 61 | Called when the user changes the text in the name of the view. |
62 | */ | 62 | */ |
63 | void textChanged( const QString &text ); | 63 | void textChanged( const QString &text ); |
64 | 64 | ||
65 | private: | 65 | private: |
66 | QDict<ViewFactory> *mViewFactoryDict; | 66 | Q3Dict<ViewFactory> *mViewFactoryDict; |
67 | QLineEdit *mViewNameEdit; | 67 | QLineEdit *mViewNameEdit; |
68 | QButtonGroup *mTypeGroup; | 68 | Q3ButtonGroup *mTypeGroup; |
69 | 69 | ||
70 | int mTypeId; | 70 | int mTypeId; |
71 | }; | 71 | }; |
72 | 72 | ||
73 | #endif | 73 | #endif |