diff options
Diffstat (limited to 'kipi-plugins/galleryexport/galleryconfig.h')
-rw-r--r-- | kipi-plugins/galleryexport/galleryconfig.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/kipi-plugins/galleryexport/galleryconfig.h b/kipi-plugins/galleryexport/galleryconfig.h index 0aaedcc..a5945ac 100644 --- a/kipi-plugins/galleryexport/galleryconfig.h +++ b/kipi-plugins/galleryexport/galleryconfig.h @@ -20,9 +20,9 @@ #define GALLERYCONFIG_H #include <kdialogbase.h> -#include <qvaluelist.h> -#include <qpair.h> -#include <qintdict.h> +#include <tqvaluelist.h> +#include <tqpair.h> +#include <tqintdict.h> namespace KIPIGalleryExportPlugin { @@ -32,23 +32,24 @@ class Gallery; class GalleryEdit : public KDialogBase { Q_OBJECT + TQ_OBJECT public: - GalleryEdit(QWidget* pParent, + GalleryEdit(TQWidget* pParent, Gallery* pGallery, - QString title); + TQString title); ~GalleryEdit(); private: Gallery* mpGallery; - QLabel* mpHeaderLabel; - QLineEdit* mpNameEdit; - QLineEdit* mpUrlEdit; - QLineEdit* mpUsernameEdit; - QLineEdit* mpPasswordEdit; - QCheckBox* mpGalleryVersion; + TQLabel* mpHeaderLabel; + TQLineEdit* mpNameEdit; + TQLineEdit* mpUrlEdit; + TQLineEdit* mpUsernameEdit; + TQLineEdit* mpPasswordEdit; + TQCheckBox* mpGalleryVersion; private slots: void slotOk(void); |