summaryrefslogtreecommitdiffstats
path: root/src/dolphin.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-01-21 11:27:37 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-02-03 21:53:18 +0900
commit8b6676d33f9bcfe8dbc66ac07c979fdeb94d9dd7 (patch)
treebb9021daca7e531d9ddda8c4defe1176df614788 /src/dolphin.cpp
parentb0d1fc9cb7453d362a883f016c14d24a6e7d7f62 (diff)
downloaddolphin-8b6676d33f9bcfe8dbc66ac07c979fdeb94d9dd7.tar.gz
dolphin-8b6676d33f9bcfe8dbc66ac07c979fdeb94d9dd7.zip
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/dolphin.cpp')
-rw-r--r--src/dolphin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dolphin.cpp b/src/dolphin.cpp
index f3ebab9..4966fdb 100644
--- a/src/dolphin.cpp
+++ b/src/dolphin.cpp
@@ -295,7 +295,7 @@ void Dolphin::slotSelectionChanged()
void Dolphin::closeEvent(TQCloseEvent* event)
{
- TDEConfig* config = kapp->config();
+ TDEConfig* config = tdeApp->config();
config->setGroup("General");
config->writeEntry("First Run", false);
@@ -922,7 +922,7 @@ void Dolphin::goHome()
void Dolphin::openTerminal()
{
- TDEConfig * config = kapp->config();
+ TDEConfig * config = tdeApp->config();
config->setGroup("General");
TQString term = config->readPathEntry("TerminalApplication", "konsole");
@@ -1092,7 +1092,7 @@ void Dolphin::init()
{
// Check whether Dolphin runs the first time. If yes then
// a proper default window size is given at the end of Dolphin::init().
- TDEConfig* config = kapp->config();
+ TDEConfig* config = tdeApp->config();
config->setGroup("General");
const bool firstRun = config->readBoolEntry("First Run", true);