summaryrefslogtreecommitdiffstats
path: root/kcontrol/kio/kproxydlgbase.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kcontrol/kio/kproxydlgbase.h
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcontrol/kio/kproxydlgbase.h')
-rw-r--r--kcontrol/kio/kproxydlgbase.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kcontrol/kio/kproxydlgbase.h b/kcontrol/kio/kproxydlgbase.h
index 7c39f31c0..06ffa8753 100644
--- a/kcontrol/kio/kproxydlgbase.h
+++ b/kcontrol/kio/kproxydlgbase.h
@@ -22,9 +22,9 @@
#ifndef KPROXY_DIALOG_BASE_H
#define KPROXY_DIALOG_BASE_H
-#include <qmap.h>
-#include <qstring.h>
-#include <qstringlist.h>
+#include <tqmap.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
#include <kdialogbase.h>
#include <kprotocolmanager.h>
@@ -40,9 +40,9 @@ public:
bool useReverseProxy;
bool showEnvVarValue;
- QStringList noProxyFor;
+ TQStringList noProxyFor;
KProtocolManager::ProxyType type;
- QMap<QString, QString> proxyList;
+ TQMap<TQString, TQString> proxyList;
private:
void init();
@@ -52,8 +52,8 @@ private:
class KProxyDialogBase : public KDialogBase
{
public:
- KProxyDialogBase( QWidget* parent = 0, const char* name = 0,
- bool modal = false, const QString &caption = QString::null);
+ KProxyDialogBase( TQWidget* parent = 0, const char* name = 0,
+ bool modal = false, const TQString &caption = TQString::null);
virtual ~KProxyDialogBase() {};
@@ -62,7 +62,7 @@ public:
virtual void setProxyData (const KProxyData&)=0;
protected:
- void setHighLight (QWidget* widget = 0, bool highlight = false);
+ void setHighLight (TQWidget* widget = 0, bool highlight = false);
bool m_bHasValidData;
};
#endif