summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2014-12-21 03:41:15 +0100
committerSlávek Banko <slavek.banko@axis.cz>2014-12-21 03:41:15 +0100
commit419e900e1ad493cce5281061c9f97af2102c8e26 (patch)
tree9310bc70fe67aae196d27405006f2d0f34028401
parent2c0af2e6ad15b6933ed9d1507354aaa47ab8ca7b (diff)
downloadkaffeine-419e900e1ad493cce5281061c9f97af2102c8e26.tar.gz
kaffeine-419e900e1ad493cce5281061c9f97af2102c8e26.zip
Fix accidental rename of TDEAction action names in xine_part
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--kaffeine/src/player-parts/xine-part/xine_part.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kaffeine/src/player-parts/xine-part/xine_part.cpp b/kaffeine/src/player-parts/xine-part/xine_part.cpp
index fb1eb67..48724fc 100644
--- a/kaffeine/src/player-parts/xine-part/xine_part.cpp
+++ b/kaffeine/src/player-parts/xine-part/xine_part.cpp
@@ -1264,9 +1264,9 @@ void XinePart::slotFinalize()
TDEAction* action = NULL;
m_embeddedContext = new TDEPopupMenu(0);
m_embeddedContext->insertTitle(instance()->iconLoader()->loadIcon("kaffeine", TDEIcon::Small), i18n("Kaffeine Player"));
- actionCollection()->action("media-playback-start")->plug(m_embeddedContext);
- actionCollection()->action("media-playback-pause")->plug(m_embeddedContext);
- actionCollection()->action("media-playback-stop")->plug(m_embeddedContext);
+ actionCollection()->action("player_play")->plug(m_embeddedContext);
+ actionCollection()->action("player_pause")->plug(m_embeddedContext);
+ actionCollection()->action("player_stop")->plug(m_embeddedContext);
actionCollection()->action("volume_increase")->plug(m_embeddedContext);
actionCollection()->action("volume_decrease")->plug(m_embeddedContext);
actionCollection()->action("audio_mute")->plug(m_embeddedContext);
@@ -1330,7 +1330,7 @@ void XinePart::initActions()
new TDEAction(i18n("Toggle Minimal Mode"), 0, 0, this, TQT_SIGNAL(signalToggleMinimalMode()), actionCollection(), "player_minimal_mode");
new TDEAction(i18n("Play"), "media-playback-start", 0, TQT_TQOBJECT(this), TQT_SLOT(slotPlay()), actionCollection(), "player_play");
- m_pauseButton = new TDEToggleAction(i18n("Pause"), "media-playback-pause", Key_Space, TQT_TQOBJECT(this), TQT_SLOT(slotTogglePause()), actionCollection(), "media-playback-pause");
+ m_pauseButton = new TDEToggleAction(i18n("Pause"), "media-playback-pause", Key_Space, TQT_TQOBJECT(this), TQT_SLOT(slotTogglePause()), actionCollection(), "player_pause");
new TDEAction(i18n("&Next"), "media-skip-forward", Key_PageDown, TQT_TQOBJECT(this), TQT_SLOT(slotNext()), actionCollection(), "player_next");
new TDEAction(i18n("&Previous"), "media-skip-backward", Key_PageUp, TQT_TQOBJECT(this), TQT_SLOT(slotPrevious()), actionCollection(), "player_previous");
new TDEAction(i18n("Stop"), "media-playback-stop", Key_Backspace, TQT_TQOBJECT(this), TQT_SLOT(slotStop()), actionCollection(), "player_stop");