diff options
author | Slávek Banko <[email protected]> | 2013-10-08 00:13:25 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-10-08 05:14:53 +0200 |
commit | 84f5a315c3429b47a7eff15e626e2efdbe4f6e5e (patch) | |
tree | 770861aa9033e1dc6c5168358194ff85b32dd429 /src/kscopeactions.cpp | |
parent | 57d8bb3d12aed373eee08915f0ff19f5233aabe3 (diff) | |
download | kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.tar.gz kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.zip |
Initial TQt conversion
Diffstat (limited to 'src/kscopeactions.cpp')
-rw-r--r-- | src/kscopeactions.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kscopeactions.cpp b/src/kscopeactions.cpp index d5c64fc..3caaedd 100644 --- a/src/kscopeactions.cpp +++ b/src/kscopeactions.cpp @@ -33,7 +33,7 @@ #include "editortabs.h" #include "querywidget.h" -KScopeActions::KScopeActions(KScope* pWindow) : QObject(), +KScopeActions::KScopeActions(KScope* pWindow) : TQObject(), m_pWindow(pWindow), m_pCollection(pWindow->actionCollection()) { @@ -474,8 +474,8 @@ void KScopeActions::slotEnableFileActions(bool bEnable) * the action * @return The newly created action object */ -KAction* KScopeActions::addAction(const QString& sCaption, const char* szIcon, - const char* szShortcut, QWidget* pReceiver, const char* szSlot, +KAction* KScopeActions::addAction(const TQString& sCaption, const char* szIcon, + const char* szShortcut, TQWidget* pReceiver, const char* szSlot, const char* szName, const char* szSignal) { KAction* pAction; @@ -508,8 +508,8 @@ KAction* KScopeActions::addAction(const QString& sCaption, const char* szIcon, * the action * @return The newly created action object */ -KToggleAction* KScopeActions::addToggle(const QString& sCaption, - const char* szIcon, const char* szShortcut, QWidget* pReceiver, +KToggleAction* KScopeActions::addToggle(const TQString& sCaption, + const char* szIcon, const char* szShortcut, TQWidget* pReceiver, const char* szSlot, const char* szName, const char* szSignal) { KToggleAction* pAction; |