diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:04:44 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:04:44 -0600 |
commit | 4ba6286d9eaa3754119526dc1ac3435a341549cb (patch) | |
tree | 92749c4fa4e554fd060c8ac9aeb4d1490f05141c /plugins/scheduler | |
parent | 2cf12b3b4be272da465791312b82cfcc77704b9d (diff) | |
download | ktorrent-4ba6286d9eaa3754119526dc1ac3435a341549cb.tar.gz ktorrent-4ba6286d9eaa3754119526dc1ac3435a341549cb.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'plugins/scheduler')
-rw-r--r-- | plugins/scheduler/schedulerplugin.cpp | 4 | ||||
-rw-r--r-- | plugins/scheduler/schedulerplugin.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/scheduler/schedulerplugin.cpp b/plugins/scheduler/schedulerplugin.cpp index 436f32b..0f1c6fa 100644 --- a/plugins/scheduler/schedulerplugin.cpp +++ b/plugins/scheduler/schedulerplugin.cpp @@ -94,7 +94,7 @@ namespace kt BWScheduler::instance().trigger(); // updateEnabledBWS(); - bws_action = new KAction(i18n("Open Bandwidth Scheduler" ), "clock", 0, this, + bws_action = new TDEAction(i18n("Open Bandwidth Scheduler" ), "clock", 0, this, TQT_SLOT(openBWS()), actionCollection(), "bwscheduler" ); } @@ -134,7 +134,7 @@ namespace kt { if(SchedulerPluginSettings::enableBWS()) { - bws_action = new KAction(i18n("Open Bandwidth Scheduler" ), "clock", 0, this, + bws_action = new TDEAction(i18n("Open Bandwidth Scheduler" ), "clock", 0, this, TQT_SLOT(openBWS()), actionCollection(), "bwscheduler" ); } else diff --git a/plugins/scheduler/schedulerplugin.h b/plugins/scheduler/schedulerplugin.h index 90bfd76..6fb9733 100644 --- a/plugins/scheduler/schedulerplugin.h +++ b/plugins/scheduler/schedulerplugin.h @@ -63,7 +63,7 @@ namespace kt /* BANDWIDTH SCHEDULE PLUGIN */ SchedulerPrefPage* Pref; - KAction* bws_action; + TDEAction* bws_action; }; } |