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 /konqueror/keditbookmarks/main.cpp | |
parent | 1a5b54f42c0218aef7def4bc2d5cbcc0ed6cfadd (diff) | |
download | tdebase-834496cf73084adeb3959b6e2c11f104955bb69a.tar.gz tdebase-834496cf73084adeb3959b6e2c11f104955bb69a.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'konqueror/keditbookmarks/main.cpp')
-rw-r--r-- | konqueror/keditbookmarks/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/konqueror/keditbookmarks/main.cpp b/konqueror/keditbookmarks/main.cpp index 1355874de..6bb249beb 100644 --- a/konqueror/keditbookmarks/main.cpp +++ b/konqueror/keditbookmarks/main.cpp @@ -61,7 +61,7 @@ static void continueInWindow(TQString _wname) { TQCString wname = _wname.latin1(); int id = -1; - QCStringList apps = kapp->dcopClient()->registeredApplications(); + QCStringList apps = tdeApp->dcopClient()->registeredApplications(); for (QCStringList::Iterator it = apps.begin(); it != apps.end(); ++it) { TQCString &clientId = *it; @@ -93,7 +93,7 @@ static int askUser(TDEApplication &app, TQString filename, bool &readonly) { int ret = KMessageBox::warningYesNo(0, i18n("Another instance of %1 is already running, do you really " "want to open another instance or continue work in the same instance?\n" - "Please note that, unfortunately, duplicate views are read-only.").arg(kapp->caption()), + "Please note that, unfortunately, duplicate views are read-only.").arg(tdeApp->caption()), i18n("Warning"), i18n("Run Another"), /* yes */ i18n("Continue in Same") /* no */); |