diff options
Diffstat (limited to 'languages/ruby/debugger')
| -rw-r--r-- | languages/ruby/debugger/dbgtoolbar.cpp | 2 | ||||
| -rw-r--r-- | languages/ruby/debugger/debuggerpart.cpp | 2 | ||||
| -rw-r--r-- | languages/ruby/debugger/rdboutputwidget.cpp | 2 | 
3 files changed, 3 insertions, 3 deletions
diff --git a/languages/ruby/debugger/dbgtoolbar.cpp b/languages/ruby/debugger/dbgtoolbar.cpp index ba433c21..7dabbd3b 100644 --- a/languages/ruby/debugger/dbgtoolbar.cpp +++ b/languages/ruby/debugger/dbgtoolbar.cpp @@ -298,7 +298,7 @@ DbgToolBar::DbgToolBar(RubyDebuggerPart* part,      DbgMoveHandle*  moveHandle= new DbgMoveHandle(this);      TQPushButton*  bRun        = new DbgButton(BarIcon("dbgrun"),        i18n("Run"),        this); -    TQPushButton*  bInterrupt  = new DbgButton(BarIcon("player_pause"),  i18n("Interrupt"),  this); +    TQPushButton*  bInterrupt  = new DbgButton(BarIcon("media-playback-pause"),  i18n("Interrupt"),  this);      TQPushButton*  bNext       = new DbgButton(BarIcon("dbgnext"),       i18n("Step Over"),  this);      TQPushButton*  bStep       = new DbgButton(BarIcon("dbgstep"),       i18n("Step Into"),    this);      TQPushButton*  bFinish     = new DbgButton(BarIcon("dbgstepout"),    i18n("Step Out"),   this); diff --git a/languages/ruby/debugger/debuggerpart.cpp b/languages/ruby/debugger/debuggerpart.cpp index b3f91d75..bfa5de96 100644 --- a/languages/ruby/debugger/debuggerpart.cpp +++ b/languages/ruby/debugger/debuggerpart.cpp @@ -176,7 +176,7 @@ RubyDebuggerPart::RubyDebuggerPart( TQObject *parent, const char *name, const TQ      action->setToolTip( i18n("Stop debugger") );      action->setWhatsThis(i18n("<b>Stop debugger</b><p>Kills the executable and exits the debugger.")); -    action = new TDEAction(i18n("Interrupt"), "player_pause", 0, +    action = new TDEAction(i18n("Interrupt"), "media-playback-pause", 0,                           this, TQT_SLOT(slotPause()),                           actionCollection(), "debug_pause");      action->setToolTip( i18n("Interrupt application") ); diff --git a/languages/ruby/debugger/rdboutputwidget.cpp b/languages/ruby/debugger/rdboutputwidget.cpp index 568ddfd4..575d60ad 100644 --- a/languages/ruby/debugger/rdboutputwidget.cpp +++ b/languages/ruby/debugger/rdboutputwidget.cpp @@ -71,7 +71,7 @@ RDBOutputWidget::RDBOutputWidget( TQWidget *parent, const char *name) :                                           0,                                           m_Interrupt->sizePolicy().hasHeightForWidth())                                           ); -    m_Interrupt->setPixmap ( SmallIcon ( "player_pause" ) ); +    m_Interrupt->setPixmap ( SmallIcon ( "media-playback-pause" ) );      userRDBCmdEntry->addWidget(m_Interrupt);      TQToolTip::add ( m_Interrupt, i18n ( "Pause execution of the app to enter rdb commands" ) );  | 
