summaryrefslogtreecommitdiffstats
path: root/src/ksvnwidgets/depthselector.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-04 19:54:24 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-04 19:54:24 +0000
commitd7633c195a464e4d344ada9eea61afd10110598a (patch)
tree1f2da0b135f3ed84955e340cae823f00c4ce7284 /src/ksvnwidgets/depthselector.h
parent3fa7eb804f67b2789f128075cc2522f398640250 (diff)
downloadtdesvn-d7633c195a464e4d344ada9eea61afd10110598a.tar.gz
tdesvn-d7633c195a464e4d344ada9eea61afd10110598a.zip
Port kdesvn to TQt4
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1230412 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/ksvnwidgets/depthselector.h')
-rw-r--r--src/ksvnwidgets/depthselector.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ksvnwidgets/depthselector.h b/src/ksvnwidgets/depthselector.h
index 649537b..f6b9e2b 100644
--- a/src/ksvnwidgets/depthselector.h
+++ b/src/ksvnwidgets/depthselector.h
@@ -24,19 +24,20 @@
#include "src/svnqt/svnqttypes.hpp"
-class QCheckBox;
+class TQCheckBox;
class DepthSelector: public DepthSettings {
Q_OBJECT
+ TQ_OBJECT
public:
- DepthSelector(QWidget *parent = 0, const char *name = 0);
+ DepthSelector(TQWidget *tqparent = 0, const char *name = 0);
virtual ~DepthSelector();
svn::Depth getDepth()const;
- void addItemWidget(QWidget*);
+ void addItemWidget(TQWidget*);
void hideDepth(bool hide);
protected:
- QCheckBox*m_recurse;
+ TQCheckBox*m_recurse;
};
#endif