summaryrefslogtreecommitdiffstats
path: root/kdbg/mainwndbase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdbg/mainwndbase.cpp')
-rw-r--r--kdbg/mainwndbase.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kdbg/mainwndbase.cpp b/kdbg/mainwndbase.cpp
index 2c97c41..bed938e 100644
--- a/kdbg/mainwndbase.cpp
+++ b/kdbg/mainwndbase.cpp
@@ -4,12 +4,12 @@
* See the file COPYING in the toplevel directory of the source directory.
*/
-#include <kapplication.h>
-#include <klocale.h> /* i18n */
-#include <kconfig.h>
-#include <kmessagebox.h>
+#include <tdeapplication.h>
+#include <tdelocale.h> /* i18n */
+#include <tdeconfig.h>
+#include <tdemessagebox.h>
#include <kstatusbar.h>
-#include <kfiledialog.h>
+#include <tdefiledialog.h>
#include <ntqtabdialog.h>
#include <ntqfile.h>
#include <ntqdragobject.h>
@@ -207,13 +207,13 @@ const char SourceFileFilter[] = "SourceFileFilter";
const char HeaderFileFilter[] = "HeaderFileFilter";
const char GeneralGroup[] = "General";
-void DebuggerMainWndBase::saveSettings(KConfig* config)
+void DebuggerMainWndBase::saveSettings(TDEConfig* config)
{
if (m_debugger != 0) {
m_debugger->saveSettings(config);
}
- KConfigGroupSaver g(config, OutputWindowGroup);
+ TDEConfigGroupSaver g(config, OutputWindowGroup);
config->writeEntry(TermCmdStr, m_outputTermCmdStr);
config->setGroup(DebuggerGroup);
@@ -227,13 +227,13 @@ void DebuggerMainWndBase::saveSettings(KConfig* config)
config->writeEntry(HeaderFileFilter, m_headerFilter);
}
-void DebuggerMainWndBase::restoreSettings(KConfig* config)
+void DebuggerMainWndBase::restoreSettings(TDEConfig* config)
{
if (m_debugger != 0) {
m_debugger->restoreSettings(config);
}
- KConfigGroupSaver g(config, OutputWindowGroup);
+ TDEConfigGroupSaver g(config, OutputWindowGroup);
/*
* For debugging and emergency purposes, let the config file override
* the shell script that is used to keep the output window open. This
@@ -479,7 +479,7 @@ TQString DebuggerMainWndBase::createOutputWindow()
}
#endif
- m_outputTermProc = new KProcess;
+ m_outputTermProc = new TDEProcess;
{
/*