summaryrefslogtreecommitdiffstats
path: root/src/modules/theme/packthemedialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 18:31:12 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 18:31:12 +0000
commit0a80cfd57d271dd44221467efb426675fa470356 (patch)
tree6f503a31aa078eaf8fa015cf1749808529d49fc9 /src/modules/theme/packthemedialog.h
parent3329e5a804e28ef3f5eb51d1e7affdd5a508e8f2 (diff)
downloadkvirc-0a80cfd57d271dd44221467efb426675fa470356.tar.gz
kvirc-0a80cfd57d271dd44221467efb426675fa470356.zip
TQt4 port kvirc
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kvirc@1238719 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/modules/theme/packthemedialog.h')
-rw-r--r--src/modules/theme/packthemedialog.h27
1 files changed, 14 insertions, 13 deletions
diff --git a/src/modules/theme/packthemedialog.h b/src/modules/theme/packthemedialog.h
index 7731cc3..6fab163 100644
--- a/src/modules/theme/packthemedialog.h
+++ b/src/modules/theme/packthemedialog.h
@@ -28,39 +28,40 @@
#include "kvi_pointerlist.h"
#include "kvi_theme.h"
-#include <qdialog.h>
+#include <tqdialog.h>
#include <kvi_tal_wizard.h>
-class QLineEdit;
+class TQLineEdit;
class KviTalTextEdit;
-class QLabel;
-class QMultiLineEdit;
+class TQLabel;
+class TQMultiLineEdit;
class KviFileSelector;
class KviPackThemeDialog : public KviTalWizard
{
Q_OBJECT
+ TQ_OBJECT
public:
- KviPackThemeDialog(QWidget * pParent,KviPointerList<KviThemeInfo> * pThemeInfoList);
+ KviPackThemeDialog(TQWidget * pParent,KviPointerList<KviThemeInfo> * pThemeInfoList);
virtual ~KviPackThemeDialog();
protected:
- QString m_szImagePath;
+ TQString m_szImagePath;
KviFileSelector * m_pImageSelector;
- QString m_szPackagePath;
+ TQString m_szPackagePath;
KviFileSelector * m_pPathSelector;
- QLabel * m_pImageLabel;
+ TQLabel * m_pImageLabel;
KviPointerList<KviThemeInfo> * m_pThemeInfoList;
- QLineEdit * m_pPackageNameEdit;
+ TQLineEdit * m_pPackageNameEdit;
KviTalTextEdit * m_pPackageDescriptionEdit;
- QLineEdit * m_pPackageVersionEdit;
- QLineEdit * m_pPackagerNameEdit;
- QWidget * m_pImageSelectionPage;
+ TQLineEdit * m_pPackageVersionEdit;
+ TQLineEdit * m_pPackagerNameEdit;
+ TQWidget * m_pImageSelectionPage;
protected:
virtual void accept();
bool packTheme();
protected slots:
- void imageSelectionChanged(const QString &szImagePath);
+ void imageSelectionChanged(const TQString &szImagePath);
};
#endif //!_PACKTHEMEDIALOG_H_