diff options
Diffstat (limited to 'kcontrol/background/main.cpp')
-rw-r--r-- | kcontrol/background/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kcontrol/background/main.cpp b/kcontrol/background/main.cpp index 2f6832dcc..23478b5e1 100644 --- a/kcontrol/background/main.cpp +++ b/kcontrol/background/main.cpp @@ -1,4 +1,4 @@ -/* vi: ts=8 sts=4 sw=4 +/* * This file is part of the KDE project, module kcmbackground. * Copyright (C) 1999 Geert Jansen <g.t.jansen@stud.tue.nl> * Copyright (C) 2003 Waldo Bastian <bastian@kde.org> @@ -65,7 +65,7 @@ KBackground::KBackground(TQWidget *parent, const char *name, const TQStringList // reparenting that is done. setAcceptDrops(true); - connect(m_base, TQT_SIGNAL(changed(bool)), TQT_SIGNAL(changed(bool))); + connect(m_base, TQ_SIGNAL(changed(bool)), TQ_SIGNAL(changed(bool))); TDEAboutData *about = new TDEAboutData(I18N_NOOP("kcmbackground"), I18N_NOOP("TDE Background Control Module"), @@ -100,7 +100,7 @@ void KBackground::save() m_base->save(); // reconfigure kdesktop. kdesktop will notify all clients - DCOPClient *client = kapp->dcopClient(); + DCOPClient *client = tdeApp->dcopClient(); if (!client->isAttached()) client->attach(); |