summaryrefslogtreecommitdiffstats
path: root/languages
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 20:10:12 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 20:10:12 -0500
commit6d3dca838492ddc6596d110ec11a9d5d75bbd6d4 (patch)
treeb2c80c69618d12286a8e5f29cf6e9ad70b531b88 /languages
parentfd06cd80d2fb44f970b3d7b026f9eb3c330a46cf (diff)
downloadtdevelop-6d3dca838492ddc6596d110ec11a9d5d75bbd6d4.tar.gz
tdevelop-6d3dca838492ddc6596d110ec11a9d5d75bbd6d4.zip
Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance
Diffstat (limited to 'languages')
-rw-r--r--languages/cpp/debugger/dbgtoolbar.cpp2
-rw-r--r--languages/cpp/debugger/debuggerpart.cpp2
-rw-r--r--languages/cpp/debugger/gdboutputwidget.cpp2
-rw-r--r--languages/ruby/debugger/dbgtoolbar.cpp2
-rw-r--r--languages/ruby/debugger/debuggerpart.cpp2
-rw-r--r--languages/ruby/debugger/rdboutputwidget.cpp2
6 files changed, 6 insertions, 6 deletions
diff --git a/languages/cpp/debugger/dbgtoolbar.cpp b/languages/cpp/debugger/dbgtoolbar.cpp
index 60728514..05b92d8a 100644
--- a/languages/cpp/debugger/dbgtoolbar.cpp
+++ b/languages/cpp/debugger/dbgtoolbar.cpp
@@ -299,7 +299,7 @@ DbgToolBar::DbgToolBar(DebuggerPart* 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"), TQString(), this);
TQPushButton* bNexti = new DbgButton(BarIcon("dbgnextinst"), TQString(), this);
TQPushButton* bStep = new DbgButton(BarIcon("dbgstep"), TQString(), this);
diff --git a/languages/cpp/debugger/debuggerpart.cpp b/languages/cpp/debugger/debuggerpart.cpp
index 380e7ac5..61384cbd 100644
--- a/languages/cpp/debugger/debuggerpart.cpp
+++ b/languages/cpp/debugger/debuggerpart.cpp
@@ -213,7 +213,7 @@ DebuggerPart::DebuggerPart( TQObject *parent, const char *name, const TQStringLi
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/cpp/debugger/gdboutputwidget.cpp b/languages/cpp/debugger/gdboutputwidget.cpp
index cc41a2a2..deabf2c8 100644
--- a/languages/cpp/debugger/gdboutputwidget.cpp
+++ b/languages/cpp/debugger/gdboutputwidget.cpp
@@ -68,7 +68,7 @@ GDBOutputWidget::GDBOutputWidget( TQWidget *parent, const char *name) :
0,
m_Interrupt->sizePolicy().hasHeightForWidth())
);
- m_Interrupt->setPixmap ( SmallIcon ( "player_pause" ) );
+ m_Interrupt->setPixmap ( SmallIcon ( "media-playback-pause" ) );
userGDBCmdEntry->addWidget(m_Interrupt);
TQToolTip::add ( m_Interrupt, i18n ( "Pause execution of the app to enter gdb commands" ) );
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" ) );