Replace various '#define' strings - part 6

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/33/head
Michele Calgaro 5 months ago
parent 6061313eb0
commit dba312132e
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -118,13 +118,13 @@ TopLevel::TopLevel() : KSystemTray()
startAct = new TDEAction(i18n("&Start"), "1rightarrow", 0, startAct = new TDEAction(i18n("&Start"), "1rightarrow", 0,
TQT_TQOBJECT(this), TQT_SLOT(start()), actionCollection(), "start"); this, TQT_SLOT(start()), actionCollection(), "start");
stopAct = new TDEAction(i18n("Sto&p"), "cancel", 0, stopAct = new TDEAction(i18n("Sto&p"), "cancel", 0,
TQT_TQOBJECT(this), TQT_SLOT(stop()), actionCollection(), "stop"); this, TQT_SLOT(stop()), actionCollection(), "stop");
confAct = new TDEAction(i18n("&Configure..."), "configure", 0, confAct = new TDEAction(i18n("&Configure..."), "configure", 0,
TQT_TQOBJECT(this), TQT_SLOT(config()), actionCollection(), "configure"); this, TQT_SLOT(config()), actionCollection(), "configure");
anonAct = new TDEAction(i18n("&Anonymous..."), 0, 0, anonAct = new TDEAction(i18n("&Anonymous..."), 0, 0,
TQT_TQOBJECT(this), TQT_SLOT(anonymous()), actionCollection(), "anonymous"); this, TQT_SLOT(anonymous()), actionCollection(), "anonymous");
// TDEAction *quitAct = actionCollection()->action("file_quit"); // TDEAction *quitAct = actionCollection()->action("file_quit");
// create app menu (displayed on right-click) // create app menu (displayed on right-click)
@ -452,7 +452,7 @@ void TopLevel::start()
} }
// else both are already defined by dialog handler // else both are already defined by dialog handler
TQT_TQOBJECT(this)->killTimers(); this->killTimers();
startTimer(1000); // 1000ms = 1s (sufficient resolution) startTimer(1000); // 1000ms = 1s (sufficient resolution)
running = true; running = true;
@ -466,7 +466,7 @@ void TopLevel::start()
/* menu-slot: "stop" selected in menu */ /* menu-slot: "stop" selected in menu */
void TopLevel::stop() void TopLevel::stop()
{ {
TQT_TQOBJECT(this)->killTimers(); this->killTimers();
running = false; running = false;
ready = false; ready = false;

@ -29,7 +29,7 @@ int main (int argc, char *argv[])
// This app is started automatically, no need for session management // This app is started automatically, no need for session management
app.disableSessionManagement(); app.disableSessionManagement();
kdDebug() << "starting dcopservice " << endl; kdDebug() << "starting dcopservice " << endl;
new WeatherService(TQT_TQOBJECT(&app), "WeatherService"); new WeatherService(&app, "WeatherService");
return app.exec(); return app.exec();
} }

@ -45,9 +45,9 @@ sidebarwidget::sidebarwidget(TQWidget* parent, const char* name)
toolbar->setSizePolicy(TQSizePolicy::Maximum, TQSizePolicy::Minimum); toolbar->setSizePolicy(TQSizePolicy::Maximum, TQSizePolicy::Minimum);
TDEAction *refresh = new TDEAction( i18n("Refresh"), SmallIcon("view-refresh"), TDEAction *refresh = new TDEAction( i18n("Refresh"), SmallIcon("view-refresh"),
0, TQT_TQOBJECT(this), TQT_SLOT(slotRefresh()), this, "refresh" ); 0, this, TQT_SLOT(slotRefresh()), this, "refresh" );
TDEAction *prefs = new TDEAction( i18n("Settings"), SmallIcon("configure"), TDEAction *prefs = new TDEAction( i18n("Settings"), SmallIcon("configure"),
0, TQT_TQOBJECT(this), TQT_SLOT(slotConfigure()), this, "preferences" ); 0, this, TQT_SLOT(slotConfigure()), this, "preferences" );
refresh->plug(toolbar); refresh->plug(toolbar);
prefs->plug(toolbar); prefs->plug(toolbar);

Loading…
Cancel
Save