diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-10-08 00:13:25 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-10-08 05:14:53 +0200 |
commit | 84f5a315c3429b47a7eff15e626e2efdbe4f6e5e (patch) | |
tree | 770861aa9033e1dc6c5168358194ff85b32dd429 /src/prefopt.cpp | |
parent | 57d8bb3d12aed373eee08915f0ff19f5233aabe3 (diff) | |
download | kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.tar.gz kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.zip |
Initial TQt conversion
Diffstat (limited to 'src/prefopt.cpp')
-rw-r--r-- | src/prefopt.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/prefopt.cpp b/src/prefopt.cpp index 7b52d8f..aefb6c8 100644 --- a/src/prefopt.cpp +++ b/src/prefopt.cpp @@ -25,10 +25,10 @@ * ***************************************************************************/ -#include <qcheckbox.h> -#include <qradiobutton.h> -#include <qlineedit.h> -#include <qlabel.h> +#include <ntqcheckbox.h> +#include <ntqradiobutton.h> +#include <ntqlineedit.h> +#include <ntqlabel.h> #include "prefopt.h" #include "kscopeconfig.h" @@ -37,7 +37,7 @@ * @param pParent The parent widget * @param szName The widget's name */ -PrefOpt::PrefOpt(QWidget* pParent, const char* szName) +PrefOpt::PrefOpt(TQWidget* pParent, const char* szName) : PrefOptLayout(pParent, szName) { // Set initial values @@ -58,7 +58,7 @@ PrefOpt::PrefOpt(QWidget* pParent, const char* szName) SIGNAL(modified())); connect(m_pAutoSortCheck, SIGNAL(toggled(bool)), this, SIGNAL(modified())); - connect(m_pExtEditorEdit, SIGNAL(textChanged(const QString&)), this, + connect(m_pExtEditorEdit, SIGNAL(textChanged(const TQString&)), this, SIGNAL(modified())); connect(m_pSysProfileCB, SIGNAL(activated(int)), this, SIGNAL(modified())); |