diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-04 19:54:24 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-04 19:54:24 +0000 |
commit | d7633c195a464e4d344ada9eea61afd10110598a (patch) | |
tree | 1f2da0b135f3ed84955e340cae823f00c4ce7284 /src/ksvnwidgets/revertform_impl.cpp | |
parent | 3fa7eb804f67b2789f128075cc2522f398640250 (diff) | |
download | tdesvn-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/revertform_impl.cpp')
-rw-r--r-- | src/ksvnwidgets/revertform_impl.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ksvnwidgets/revertform_impl.cpp b/src/ksvnwidgets/revertform_impl.cpp index 8dada74..19a8a18 100644 --- a/src/ksvnwidgets/revertform_impl.cpp +++ b/src/ksvnwidgets/revertform_impl.cpp @@ -20,16 +20,16 @@ #include "revertform_impl.h" #include "depthselector.h" -#include <qstringlist.h> -#include <qlistbox.h> +#include <tqstringlist.h> +#include <tqlistbox.h> /*! - \fn RevertFormImpl::RevertFormImpl(QWidget*parent,const char*name) + \fn RevertFormImpl::RevertFormImpl(TQWidget*tqparent,const char*name) */ - RevertFormImpl::RevertFormImpl(QWidget*parent,const char*name) - :RevertForm(parent,name) + RevertFormImpl::RevertFormImpl(TQWidget*tqparent,const char*name) + :RevertForm(tqparent,name) { - setMinimumSize(minimumSizeHint()); + setMinimumSize(tqminimumSizeHint()); } /*! @@ -47,9 +47,9 @@ svn::Depth RevertFormImpl::getDepth()const /*! - \fn RevertFormImpl::setDispList(const QStringList&_list) + \fn RevertFormImpl::setDispList(const TQStringList&_list) */ -void RevertFormImpl::setDispList(const QStringList&_list) +void RevertFormImpl::setDispList(const TQStringList&_list) { m_ItemsList->insertStringList(_list); } |