summaryrefslogtreecommitdiffstats
path: root/kturtle/src/kturtle.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-20 18:26:11 +0900
committerMichele Calgaro <[email protected]>2025-02-03 21:44:11 +0900
commit02ed3f2d62dfb2efb4f3610ca96098341518483f (patch)
tree7156180f5dd4044ad1614ddf50407c1cc3e516bf /kturtle/src/kturtle.cpp
parent0b13a7b9e0f99415119eef29f05c54a01e5ec90a (diff)
downloadtdeedu-02ed3f2d62dfb2efb4f3610ca96098341518483f.tar.gz
tdeedu-02ed3f2d62dfb2efb4f3610ca96098341518483f.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kturtle/src/kturtle.cpp')
-rw-r--r--kturtle/src/kturtle.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kturtle/src/kturtle.cpp b/kturtle/src/kturtle.cpp
index b62f5e4c..04416053 100644
--- a/kturtle/src/kturtle.cpp
+++ b/kturtle/src/kturtle.cpp
@@ -86,7 +86,7 @@ MainWindow::MainWindow(KTextEditor::Document *document) : editor(0)
{
KMessageBox::error( this, i18n("A TDE text-editor component could not be found;\n"
"please check your TDE installation.") );
- kapp->exit(1);
+ tdeApp->exit(1);
}
// docList.append(doc);
}
@@ -101,9 +101,9 @@ MainWindow::MainWindow(KTextEditor::Document *document) : editor(0)
setMinimumSize(200,200);
// init with more usefull size, stolen from kwite (they stole it from konq)
- if ( !initialGeometrySet() && !kapp->config()->hasGroup("MainWindow Settings") ) resize(640, 480);
+ if ( !initialGeometrySet() && !tdeApp->config()->hasGroup("MainWindow Settings") ) resize(640, 480);
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
readConfig(config);
}
@@ -490,7 +490,7 @@ bool MainWindow::queryClose()
}
}
}
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
config->setGroup("General Options");
m_recentFiles->saveEntries(config, "Recent Files");
config->sync();
@@ -520,7 +520,7 @@ void MainWindow::slotExecute()
// start paring
slotStatusBar(i18n("Parsing commands..."), IDS_STATUS);
kdDebug(0)<<"############## PARSING STARTED ##############"<<endl;
- kapp->processEvents();
+ tdeApp->processEvents();
errMsg = new ErrorMessage(this); // create an empty errorDialog
TQString txt = editorInterface->text() + "\x0a\x0a"; // parser expects input to have 2 delimiting newlines
TQTextIStream in(&txt); // create the stream
@@ -984,7 +984,7 @@ void MainWindow::readConfig(TDEConfig *config)
void MainWindow::slotSettingsHelp()
{
- kapp->invokeHelp("settings-configure", "", "");
+ tdeApp->invokeHelp("settings-configure", "", "");
}
// END
@@ -1040,7 +1040,7 @@ void MainWindow::slotContextHelp()
kdDebug(0)<<"trying to open a help page using this keyword: "<<helpWord<<endl;
- kapp->invokeHelp(helpWord, "", "");
+ tdeApp->invokeHelp(helpWord, "", "");
TQString help2statusBar;
if ( helpKeyword.startsWith("<") ) help2statusBar = helpKeyword;