summaryrefslogtreecommitdiffstats
path: root/kutils/kcmultidialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kutils/kcmultidialog.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kutils/kcmultidialog.h')
-rw-r--r--kutils/kcmultidialog.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kutils/kcmultidialog.h b/kutils/kcmultidialog.h
index 8461c5643..df1707a9a 100644
--- a/kutils/kcmultidialog.h
+++ b/kutils/kcmultidialog.h
@@ -23,7 +23,7 @@
#ifndef KCMULTIDIALOG_H
#define KCMULTIDIALOG_H
-#include <qptrdict.h>
+#include <tqptrdict.h>
#include <kdialogbase.h>
#include <klocale.h>
@@ -52,7 +52,7 @@ public:
* @param name The widget name
* @param modal If you pass true here, the dialog will be modal
**/
- KCMultiDialog( QWidget *parent=0, const char *name=0, bool modal=false );
+ KCMultiDialog( TQWidget *parent=0, const char *name=0, bool modal=false );
/**
* Construct a personalized KCMultiDialog.
@@ -67,7 +67,7 @@ public:
* program interface (example: other dialogs) is accessible while
* the dialog is open.
*/
- KCMultiDialog( int dialogFace, const QString & caption, QWidget * parent = 0,
+ KCMultiDialog( int dialogFace, const TQString & caption, TQWidget * parent = 0,
const char * name = 0, bool modal = false );
@@ -101,7 +101,7 @@ public:
*/
KCMultiDialog( int dialogFace, const KGuiItem &user2,
const KGuiItem &user3=KGuiItem(), int buttonMask=User2,
- const QString &caption=i18n("Configure"), QWidget *parent=0,
+ const TQString &caption=i18n("Configure"), TQWidget *parent=0,
const char *name=0, bool modal=false ) KDE_DEPRECATED;
// KDE4 remove the user3 argument, and instead initialize it to KStdGuiItem::adminMode.
@@ -119,7 +119,7 @@ public:
* @param withfallback Try harder to load the module. Might result
* in the module appearing outside the dialog.
**/
- void addModule(const QString& module, bool withfallback=true);
+ void addModule(const TQString& module, bool withfallback=true);
/**
* Add a module.
@@ -137,7 +137,7 @@ public:
* in the module appearing outside the dialog.
**/
void addModule(const KCModuleInfo& moduleinfo, QStringList
- parentmodulenames = QStringList(), bool withfallback=false);
+ parentmodulenames = TQStringList(), bool withfallback=false);
/**
* Remove all modules from the dialog.
@@ -174,7 +174,7 @@ signals:
* @param instanceName The name of the instance that needs to reload its
* configuration.
*/
- void configCommitted( const QCString & instanceName );
+ void configCommitted( const TQCString & instanceName );
protected slots:
/**
@@ -223,7 +223,7 @@ protected slots:
private slots:
- void slotAboutToShow(QWidget *);
+ void slotAboutToShow(TQWidget *);
void clientChanged(bool state);
@@ -265,14 +265,14 @@ private:
KService::Ptr service;
/* KDE 4 Move to Private class */
};
- typedef QValueList<CreatedModule> ModuleList;
+ typedef TQValueList<CreatedModule> ModuleList;
ModuleList m_modules;
- typedef QMap<KService::Ptr, KCModuleProxy*> OrphanMap;
+ typedef TQMap<KService::Ptr, KCModuleProxy*> OrphanMap;
OrphanMap m_orphanModules;
- QPtrDict<QStringList> moduleParentComponents;
- QString _docPath;
+ TQPtrDict<TQStringList> moduleParentComponents;
+ TQString _docPath;
int dialogface;
class KCMultiDialogPrivate;