summaryrefslogtreecommitdiffstats
path: root/src/viewpropertiesdialog.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/viewpropertiesdialog.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/viewpropertiesdialog.h')
-rw-r--r--src/viewpropertiesdialog.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/viewpropertiesdialog.h b/src/viewpropertiesdialog.h
index 0731a27..80cc38b 100644
--- a/src/viewpropertiesdialog.h
+++ b/src/viewpropertiesdialog.h
@@ -22,10 +22,10 @@
#include <kdialogbase.h>
-class QCheckBox;
-class QButtonGroup;
-class QComboBox;
-class QRadioButton;
+class TQCheckBox;
+class TQButtonGroup;
+class TQComboBox;
+class TQRadioButton;
class ViewProperties;
class DolphinView;
@@ -41,6 +41,7 @@ class DolphinView;
class ViewPropertiesDialog : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
ViewPropertiesDialog(DolphinView* dolphinView);
@@ -64,13 +65,13 @@ private:
DolphinView* m_dolphinView;
ViewProperties* m_viewProps;
- QComboBox* m_viewMode;
- QComboBox* m_sorting;
- QComboBox* m_sortOrder;
- QCheckBox* m_showHiddenFiles;
- QRadioButton* m_applyToCurrentFolder;
- QRadioButton* m_applyToSubFolders;
- QRadioButton* m_applyToAllFolders;
+ TQComboBox* m_viewMode;
+ TQComboBox* m_sorting;
+ TQComboBox* m_sortOrder;
+ TQCheckBox* m_showHiddenFiles;
+ TQRadioButton* m_applyToCurrentFolder;
+ TQRadioButton* m_applyToSubFolders;
+ TQRadioButton* m_applyToAllFolders;
void applyViewProperties();
};