diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-10-08 00:16:56 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-10-08 05:14:54 +0200 |
commit | 78114a50964bc7bb5d7d99f713bb815ed5a623ef (patch) | |
tree | 871f5d697fb8825c02152c43ea0e671319b742cf /src/kscope.cpp | |
parent | 84f5a315c3429b47a7eff15e626e2efdbe4f6e5e (diff) | |
download | kscope-78114a50964bc7bb5d7d99f713bb815ed5a623ef.tar.gz kscope-78114a50964bc7bb5d7d99f713bb815ed5a623ef.zip |
Initial TDE conversion
Diffstat (limited to 'src/kscope.cpp')
-rw-r--r-- | src/kscope.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kscope.cpp b/src/kscope.cpp index 5e56233..4444810 100644 --- a/src/kscope.cpp +++ b/src/kscope.cpp @@ -26,10 +26,10 @@ ***************************************************************************/ #include <ntqfile.h> -#include <kfiledialog.h> -#include <kmenubar.h> -#include <klocale.h> -#include <kmessagebox.h> +#include <tdefiledialog.h> +#include <tdemenubar.h> +#include <tdelocale.h> +#include <tdemessagebox.h> #include <klineedit.h> #include <kinputdialog.h> #include <kxmlguifactory.h> @@ -899,7 +899,7 @@ void KScope::toggleQueryWindow(bool bShow) * 3. A list of source files * @param pArgs Command line arguments */ -void KScope::parseCmdLine(KCmdLineArgs* pArgs) +void KScope::parseCmdLine(TDECmdLineArgs* pArgs) { TQString sArg; TQFileInfo fi; @@ -1073,7 +1073,7 @@ bool KScope::slotCloseProject() void KScope::slotExtEdit() { TQString sCmdLine; - KProcess proc; + TDEProcess proc; // Create the command line for the external editor sCmdLine = Config().getExtEditor(); @@ -1083,7 +1083,7 @@ void KScope::slotExtEdit() // Run the external editor proc.setUseShell(true); proc << sCmdLine; - proc.start(KProcess::DontCare); + proc.start(TDEProcess::DontCare); } /** |