diff options
author | Michele Calgaro <[email protected]> | 2025-01-14 15:08:54 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 21:34:30 +0900 |
commit | 834496cf73084adeb3959b6e2c11f104955bb69a (patch) | |
tree | 4e9221c9c4bcaa2c2681f3e255b0c771379c379c /doc/ksplashml/index.docbook | |
parent | 1a5b54f42c0218aef7def4bc2d5cbcc0ed6cfadd (diff) | |
download | tdebase-834496cf73084adeb3959b6e2c11f104955bb69a.tar.gz tdebase-834496cf73084adeb3959b6e2c11f104955bb69a.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/ksplashml/index.docbook')
-rw-r--r-- | doc/ksplashml/index.docbook | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ksplashml/index.docbook b/doc/ksplashml/index.docbook index 08ca89534..b348c6286 100644 --- a/doc/ksplashml/index.docbook +++ b/doc/ksplashml/index.docbook @@ -606,13 +606,13 @@ or before it starts loading plugins, &etc;, invoke &ksplash; as follows:</para> <programlisting> -DCOPClient *c = kapp->dcopClient(); +DCOPClient *c = tdeApp->dcopClient(); TQString error; QCString KSplashName; int pid = 0; QStringList args; args << "--theme=MyCoolTheme" << "--managed"; -if (kapp->startServiceByDesktopName("ksplash", args, &error, +if (tdeApp->startServiceByDesktopName("ksplash", args, &error, &KSplashName, &pid)) { KMessageBox::sorry(0, error, "Unable to invoke KSplash"); |