By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1032
Collapse All | Expand All

(-)kmplayer/src/kmplayercontrolpanel.cpp (-2 / +2 lines)
Lines 357-366 Link Here
357
    m_buttons[button_config] = new KMPlayerMenuButton (this, m_buttonbox, config_xpm);
357
    m_buttons[button_config] = new KMPlayerMenuButton (this, m_buttonbox, config_xpm);
358
    m_buttons[button_playlist] = ctrlButton (this, m_buttonbox, playlist_xpm);
358
    m_buttons[button_playlist] = ctrlButton (this, m_buttonbox, playlist_xpm);
359
    m_buttons[button_back] = ctrlButton (this, m_buttonbox, back_xpm);
359
    m_buttons[button_back] = ctrlButton (this, m_buttonbox, back_xpm);
360
    m_buttons[button_play] = ctrlButton(this, m_buttonbox, play_xpm, TQt::Key_R);
360
    m_buttons[button_play] = ctrlButton(this, m_buttonbox, play_xpm, TQt::Key_P);
361
    m_buttons[button_forward] = ctrlButton (this, m_buttonbox, forward_xpm);
361
    m_buttons[button_forward] = ctrlButton (this, m_buttonbox, forward_xpm);
362
    m_buttons[button_stop] = ctrlButton(this, m_buttonbox, stop_xpm, TQt::Key_S);
362
    m_buttons[button_stop] = ctrlButton(this, m_buttonbox, stop_xpm, TQt::Key_S);
363
    m_buttons[button_pause]=ctrlButton(this, m_buttonbox, pause_xpm, TQt::Key_P);
363
    m_buttons[button_pause]=ctrlButton(this, m_buttonbox, pause_xpm, TQt::Key_Space);
364
    m_buttons[button_record] = ctrlButton (this, m_buttonbox, record_xpm);
364
    m_buttons[button_record] = ctrlButton (this, m_buttonbox, record_xpm);
365
    m_buttons[button_broadcast] = ctrlButton (this, m_buttonbox, broadcast_xpm);
365
    m_buttons[button_broadcast] = ctrlButton (this, m_buttonbox, broadcast_xpm);
366
    m_buttons[button_language] = new KMPlayerMenuButton (this, m_buttonbox, language_xpm);
366
    m_buttons[button_language] = new KMPlayerMenuButton (this, m_buttonbox, language_xpm);
(-)kmplayer/src/kmplayerui.rc (-2 / +2 lines)
Lines 67-74 Link Here
67
  <Action name="pause" icon="player_pause"/>
67
  <Action name="pause" icon="player_pause"/>
68
  <Action name="stop" icon="player_stop"/>
68
  <Action name="stop" icon="player_stop"/>
69
  <Action shortcut="F" name="view_fullscreen" />
69
  <Action shortcut="F" name="view_fullscreen" />
70
  <Action shortcut="R" name="play" />
70
  <Action shortcut="P" name="play" />
71
  <Action shortcut="P" name="pause" />
71
  <Action shortcut="Space" name="pause" />
72
  <Action shortcut="S" name="stop" />
72
  <Action shortcut="S" name="stop" />
73
  <Action shortcut="F2" name="edit_playlist_item"/>
73
  <Action shortcut="F2" name="edit_playlist_item"/>
74
  <Action shortcut="C" name="view_arts_control" />
74
  <Action shortcut="C" name="view_arts_control" />

Return to bug 1032