summaryrefslogtreecommitdiffstats
path: root/src/generalsettingspage.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-27 00:40:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-27 00:40:29 +0000
commit7a741e43ff09e70396a918956219b8316c48e522 (patch)
tree3d0f60eccd59786cea7236db2d5c4c1f25874515 /src/generalsettingspage.h
parenta48487ef0c329434b58b6f920111bb0999f1109e (diff)
downloaddolphin-7a741e43ff09e70396a918956219b8316c48e522.tar.gz
dolphin-7a741e43ff09e70396a918956219b8316c48e522.zip
TQt4 port Dolphin
This enables compilation under Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/dolphin@1229359 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/generalsettingspage.h')
-rw-r--r--src/generalsettingspage.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/generalsettingspage.h b/src/generalsettingspage.h
index 1d68fde..66c22da 100644
--- a/src/generalsettingspage.h
+++ b/src/generalsettingspage.h
@@ -21,9 +21,9 @@
#define GENERALSETTINGSPAGE_H
#include <settingspagebase.h>
-class QLineEdit;
-class QRadioButton;
-class QCheckBox;
+class TQLineEdit;
+class TQRadioButton;
+class TQCheckBox;
/**
* @brief Page for the 'General' settings of the Dolphin settings dialog.
@@ -36,9 +36,10 @@ class QCheckBox;
class GeneralSettingsPage : public SettingsPageBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- GeneralSettingsPage(QWidget* parent);
+ GeneralSettingsPage(TQWidget* tqparent);
virtual ~GeneralSettingsPage();
@@ -51,13 +52,13 @@ private slots:
void useDefaulLocation();
private:
- QLineEdit* m_homeURL;
- QRadioButton* m_iconsView;
- QRadioButton* m_detailsView;
- QRadioButton* m_previewsView;
- QCheckBox* m_startSplit;
- QCheckBox* m_startEditable;
- QCheckBox* m_saveView;
+ TQLineEdit* m_homeURL;
+ TQRadioButton* m_iconsView;
+ TQRadioButton* m_detailsView;
+ TQRadioButton* m_previewsView;
+ TQCheckBox* m_startSplit;
+ TQCheckBox* m_startEditable;
+ TQCheckBox* m_saveView;
};
#endif