diff options
author | Michele Calgaro <[email protected]> | 2025-01-20 17:21:29 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-01-20 17:21:29 +0900 |
commit | bd28b782b7033c3fe0d4b3a71f10206155414f7e (patch) | |
tree | 2450c6c10200e7c08bc261cf8606275fcd1638c7 /kuser/main.cpp | |
parent | 8dd602c4cb47624b1d4dbac2743ee20ab00001e4 (diff) | |
download | tdeadmin-bd28b782b7033c3fe0d4b3a71f10206155414f7e.tar.gz tdeadmin-bd28b782b7033c3fe0d4b3a71f10206155414f7e.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kuser/main.cpp')
-rw-r--r-- | kuser/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kuser/main.cpp b/kuser/main.cpp index af623ce..06e3ad6 100644 --- a/kuser/main.cpp +++ b/kuser/main.cpp @@ -52,9 +52,9 @@ int main(int argc, char **argv) TDEApplication a; - kapp->sharedConfig()->setGroup( "general" ); + tdeApp->sharedConfig()->setGroup( "general" ); kug = new KUserGlobals(); - kug->initCfg( kapp->sharedConfig()->readEntry( "connection", "default" ) ); + kug->initCfg( tdeApp->sharedConfig()->readEntry( "connection", "default" ) ); mw = new mainWidget("kuser"); a.setMainWidget(mw); |