diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-27 00:40:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-27 00:40:29 +0000 |
commit | 7a741e43ff09e70396a918956219b8316c48e522 (patch) | |
tree | 3d0f60eccd59786cea7236db2d5c4c1f25874515 /src/detailsviewsettingspage.h | |
parent | a48487ef0c329434b58b6f920111bb0999f1109e (diff) | |
download | dolphin-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/detailsviewsettingspage.h')
-rw-r--r-- | src/detailsviewsettingspage.h | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/src/detailsviewsettingspage.h b/src/detailsviewsettingspage.h index c9bde55..2c32520 100644 --- a/src/detailsviewsettingspage.h +++ b/src/detailsviewsettingspage.h @@ -21,12 +21,12 @@ #ifndef DETAILSVIEWSETTINGSPAGE_H #define DETAILSVIEWSETTINGSPAGE_H -#include <qvbox.h> -class QCheckBox; +#include <tqvbox.h> +class TQCheckBox; class KFontCombo; -class QSpinBox; -class QComboBox; -class QRadioButton; +class TQSpinBox; +class TQComboBox; +class TQRadioButton; /** * @brief Represents the page from the Dolphin Settings which allows @@ -34,12 +34,13 @@ class QRadioButton; * * @author Peter Penz <[email protected]> */ -class DetailsViewSettingsPage : public QVBox +class DetailsViewSettingsPage : public TQVBox { Q_OBJECT + TQ_OBJECT public: - DetailsViewSettingsPage(QWidget* parent); + DetailsViewSettingsPage(TQWidget* tqparent); virtual ~DetailsViewSettingsPage(); /** @@ -50,16 +51,16 @@ public: void applySettings(); private: - QCheckBox* m_dateBox; - QCheckBox* m_permissionsBox; - QCheckBox* m_ownerBox; - QCheckBox* m_groupBox; - QRadioButton* m_smallIconSize; - QRadioButton* m_mediumIconSize; - QRadioButton* m_largeIconSize; + TQCheckBox* m_dateBox; + TQCheckBox* m_permissionsBox; + TQCheckBox* m_ownerBox; + TQCheckBox* m_groupBox; + TQRadioButton* m_smallIconSize; + TQRadioButton* m_mediumIconSize; + TQRadioButton* m_largeIconSize; KFontCombo* m_fontFamilyBox; - QSpinBox* m_fontSizeBox; + TQSpinBox* m_fontSizeBox; }; #endif |