summaryrefslogtreecommitdiffstats
path: root/kworldwatch/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kworldwatch/main.cpp')
-rw-r--r--kworldwatch/main.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kworldwatch/main.cpp b/kworldwatch/main.cpp
index e113d3a..78bd401 100644
--- a/kworldwatch/main.cpp
+++ b/kworldwatch/main.cpp
@@ -66,11 +66,11 @@ WorldWideWatch::WorldWideWatch(bool restore, TQWidget *parent, const char *name)
_clocks = new ZoneClockPanel(w);
vbox->addWidget(_clocks);
- connect(_map, TQT_SIGNAL(addClockClicked(const TQString &)), _clocks, TQT_SLOT(addClock(const TQString &)));
- connect(_map, TQT_SIGNAL(saveSettings()), this, TQT_SLOT(doSave()));
+ connect(_map, TQ_SIGNAL(addClockClicked(const TQString &)), _clocks, TQ_SLOT(addClock(const TQString &)));
+ connect(_map, TQ_SIGNAL(saveSettings()), this, TQ_SLOT(doSave()));
if (restore)
- load(kapp->config());
+ load(tdeApp->config());
}
@@ -96,14 +96,14 @@ void WorldWideWatch::save(TDEConfig *config)
void WorldWideWatch::doSave()
{
- save(kapp->config());
+ save(tdeApp->config());
}
void WatchApplication::dumpMap()
{
// guess some default parameters
- TQSize mapSize(kapp->desktop()->size());
+ TQSize mapSize(tdeApp->desktop()->size());
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
@@ -178,7 +178,7 @@ int main(int argc, char *argv[])
TDEAboutData about("kworldclock", I18N_NOOP("TDE World Clock"), "1.5");
TDECmdLineArgs::init(argc, argv, &about);
TDECmdLineArgs::addCmdLineOptions(options);
- KUniqueApplication::addCmdLineOptions();
+ TDEUniqueApplication::addCmdLineOptions();
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
if (args->isSet("themes"))
@@ -188,7 +188,7 @@ int main(int argc, char *argv[])
return 0;
}
- if (!KUniqueApplication::start())
+ if (!TDEUniqueApplication::start())
return 0;
WatchApplication app;