diff options
-rw-r--r-- | kmag/kmag.cpp | 2 | ||||
-rw-r--r-- | ksayit/src/ksayitsystemtray.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kmag/kmag.cpp b/kmag/kmag.cpp index 0c0e483..5195678 100644 --- a/kmag/kmag.cpp +++ b/kmag/kmag.cpp @@ -126,7 +126,7 @@ KmagApp::~KmagApp() void KmagApp::initActions() { - fileNewWindow = new TDEAction(i18n("New &Window"), "window_new", TDEStdAccel::openNew(), TQT_TQOBJECT(this), + fileNewWindow = new TDEAction(i18n("New &Window"), "window-new", TDEStdAccel::openNew(), TQT_TQOBJECT(this), TQT_SLOT(slotFileNewWindow()), actionCollection(),"new_window"); fileNewWindow->setToolTip(i18n("Open a new KMagnifier window")); diff --git a/ksayit/src/ksayitsystemtray.cpp b/ksayit/src/ksayitsystemtray.cpp index 4a8ac59..43452ca 100644 --- a/ksayit/src/ksayitsystemtray.cpp +++ b/ksayit/src/ksayitsystemtray.cpp @@ -52,21 +52,21 @@ void KSayItSystemTray::initActions() // User defined actions say = new TDEAction(i18n("Say"), - "player_play", + "media-playback-start", 0, TQT_TQOBJECT(this), TQT_SLOT (slotSayActivated()), actionCollection(), "say_it"); shutup = new TDEAction(i18n("Shut Up"), - "player_stop", + "media-playback-stop", 0, TQT_TQOBJECT(this), TQT_SLOT (slotStopActivated()), actionCollection(), "shut_up"); pause = new TDEAction (i18n("Pause"), - "player_pause", + "media-playback-pause", 0, TQT_TQOBJECT(this), TQT_SLOT (slotPauseActivated()), actionCollection(), |