summaryrefslogtreecommitdiffstats
path: root/kbattleship
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-20 18:26:21 +0900
committerMichele Calgaro <[email protected]>2025-01-27 11:03:54 +0900
commitbd4ee3ccc15d0776614a8435850a2eb1faf5a71f (patch)
treec2ce8973a25d1e56e92a5a0b179693ed1f4f42ad /kbattleship
parent3191f81874fcfdd0466f6f42beb89da6245b1a0a (diff)
downloadtdegames-bd4ee3ccc15d0776614a8435850a2eb1faf5a71f.tar.gz
tdegames-bd4ee3ccc15d0776614a8435850a2eb1faf5a71f.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kbattleship')
-rw-r--r--kbattleship/kbattleship/kbattleship.cpp2
-rw-r--r--kbattleship/kbattleship/kchatwidget.cpp2
-rw-r--r--kbattleship/kbattleship/kclientdialog.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/kbattleship/kbattleship/kbattleship.cpp b/kbattleship/kbattleship/kbattleship.cpp
index 2db6be26..79c89005 100644
--- a/kbattleship/kbattleship/kbattleship.cpp
+++ b/kbattleship/kbattleship/kbattleship.cpp
@@ -65,7 +65,7 @@ void KBattleshipWindow::init()
m_placeable = false;
m_shootable = false;
m_serverHasClient = false;
- m_config = kapp->config();
+ m_config = tdeApp->config();
initStatusBar();
initActions();
readOptions();
diff --git a/kbattleship/kbattleship/kchatwidget.cpp b/kbattleship/kbattleship/kchatwidget.cpp
index 15449eaf..6a234dc8 100644
--- a/kbattleship/kbattleship/kchatwidget.cpp
+++ b/kbattleship/kbattleship/kchatwidget.cpp
@@ -63,7 +63,7 @@ bool KChatWidget::eventFilter(TQObject *obj, TQEvent *e)
{
if(obj == commentEdit && e->type() == TQEvent::Wheel)
{
- kapp->notify(chatView, e);
+ tdeApp->notify(chatView, e);
return true;
}
return chatDlg::eventFilter(obj, e);
diff --git a/kbattleship/kbattleship/kclientdialog.cpp b/kbattleship/kbattleship/kclientdialog.cpp
index 022dd60b..e408c29b 100644
--- a/kbattleship/kbattleship/kclientdialog.cpp
+++ b/kbattleship/kbattleship/kclientdialog.cpp
@@ -34,7 +34,7 @@ KClientDialog::KClientDialog(TQWidget *parent, const char *name)
pageLayout->addWidget(m_mainWidget, 0, 0);
enableButtonOK(false);
- m_config = kapp->config();
+ m_config = tdeApp->config();
KUser u;
m_mainWidget->nicknameEdit->setText(u.loginName());