summaryrefslogtreecommitdiffstats
path: root/src/ksvnwidgets/authdialogimpl.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/authdialogimpl.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/authdialogimpl.h')
-rw-r--r--src/ksvnwidgets/authdialogimpl.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ksvnwidgets/authdialogimpl.h b/src/ksvnwidgets/authdialogimpl.h
index 2f572b7..7b8d03e 100644
--- a/src/ksvnwidgets/authdialogimpl.h
+++ b/src/ksvnwidgets/authdialogimpl.h
@@ -21,20 +21,21 @@
#define AUTHDIALOGIMPL_H
#include "src/ksvnwidgets/authdlg.h"
-#include <qstring.h>
+#include <tqstring.h>
class AuthDialogImpl: public AuthDialogData {
Q_OBJECT
+ TQ_OBJECT
public:
- AuthDialogImpl(const QString & realm = "",const QString&user="", QWidget *parent = 0, const char *name = 0);
+ AuthDialogImpl(const TQString & realm = "",const TQString&user="", TQWidget *tqparent = 0, const char *name = 0);
- const QString Username()const;
- const QString Password();
+ const TQString Username()const;
+ const TQString Password();
bool maySave()const;
protected slots:
virtual void slotHelp();
protected:
- QString curPass;
+ TQString curPass;
};
#endif