summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--buildtools/autotools/addapplicationdlg.cpp2
-rw-r--r--buildtools/autotools/autosubprojectview.cpp2
-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
-rw-r--r--lib/widgets/kdevhtmlpart.cpp4
-rw-r--r--parts/appwizard/appwizardpart.cpp2
-rw-r--r--parts/fullscreen/fullscreen_part.cpp4
11 files changed, 13 insertions, 13 deletions
diff --git a/buildtools/autotools/addapplicationdlg.cpp b/buildtools/autotools/addapplicationdlg.cpp
index a8f56a03..af275e37 100644
--- a/buildtools/autotools/addapplicationdlg.cpp
+++ b/buildtools/autotools/addapplicationdlg.cpp
@@ -63,7 +63,7 @@ AddApplicationDialog::AddApplicationDialog(AutoProjectWidget *widget, Subproject
for (it = l.begin(); it != l.end(); ++it)
new TQListViewItem(availtypes_listview, (*it)->name());
- setIcon ( SmallIcon ( "window_new" ) );
+ setIcon ( SmallIcon ( "window-new" ) );
}
diff --git a/buildtools/autotools/autosubprojectview.cpp b/buildtools/autotools/autosubprojectview.cpp
index 01428eb3..005ae123 100644
--- a/buildtools/autotools/autosubprojectview.cpp
+++ b/buildtools/autotools/autosubprojectview.cpp
@@ -212,7 +212,7 @@ void AutoSubprojectView::initActions()
addServiceAction->plug( m_button3 );
TQToolTip::add( m_button4, tr2i18n( "Add Application..."));
- addApplicationAction = new AutoToolsAction( i18n( "Add Application..." ), "window_new", 0, TQT_TQOBJECT(this),
+ addApplicationAction = new AutoToolsAction( i18n( "Add Application..." ), "window-new", 0, TQT_TQOBJECT(this),
TQT_SLOT( slotAddApplication() ), actions, "add application" );
addApplicationAction->setWhatsThis(i18n("<qt><b>Add application</b><p>Creates an application .desktop file.</qt>"));
addApplicationAction->plug( m_button4 );
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" ) );
diff --git a/lib/widgets/kdevhtmlpart.cpp b/lib/widgets/kdevhtmlpart.cpp
index 8d5ebd7d..7c699301 100644
--- a/lib/widgets/kdevhtmlpart.cpp
+++ b/lib/widgets/kdevhtmlpart.cpp
@@ -38,7 +38,7 @@ KDevHTMLPart::KDevHTMLPart()
stopAction = new TDEAction( i18n( "Stop" ), "process-stop", 0,
this, TQT_SLOT( slotStop() ), actions, "doc_stop" );
stopAction->setWhatsThis(i18n("<b>Stop</b><p>Stops the loading of current document."));
- duplicateAction = new TDEAction( i18n( "Duplicate Tab" ), "window_new", 0,
+ duplicateAction = new TDEAction( i18n( "Duplicate Tab" ), "window-new", 0,
this, TQT_SLOT( slotDuplicate() ), actions, "doc_dup" );
duplicateAction->setWhatsThis(i18n("<b>Duplicate window</b><p>Opens current document in a new window."));
printAction = KStdAction::print(this, TQT_SLOT(slotPrint()), actions, "print_doc");
@@ -96,7 +96,7 @@ void KDevHTMLPart::popup( const TQString & url, const TQPoint & p )
int idNewWindow = -2;
if (!url.isEmpty() && (m_options & CanOpenInNewWindow))
{
- idNewWindow = popup.insertItem(SmallIcon("window_new"),i18n("Open in New Tab"));
+ idNewWindow = popup.insertItem(SmallIcon("window-new"),i18n("Open in New Tab"));
popup.TQMenuData::setWhatsThis(idNewWindow, i18n("<b>Open in new window</b><p>Opens current link in a new window."));
needSep = true;
}
diff --git a/parts/appwizard/appwizardpart.cpp b/parts/appwizard/appwizardpart.cpp
index dd2fae65..c83fc89c 100644
--- a/parts/appwizard/appwizardpart.cpp
+++ b/parts/appwizard/appwizardpart.cpp
@@ -42,7 +42,7 @@ AppWizardPart::AppWizardPart(TQObject *parent, const char *name, const TQStringL
TDEAction *action;
- action = new TDEAction( i18n("&New Project..."), "window_new", 0,
+ action = new TDEAction( i18n("&New Project..."), "window-new", 0,
this, TQT_SLOT(slotNewProject()),
actionCollection(), "project_new" );
action->setToolTip( i18n("Generate a new project from a template") );
diff --git a/parts/fullscreen/fullscreen_part.cpp b/parts/fullscreen/fullscreen_part.cpp
index 22cecb42..0bdc714f 100644
--- a/parts/fullscreen/fullscreen_part.cpp
+++ b/parts/fullscreen/fullscreen_part.cpp
@@ -56,7 +56,7 @@ void FullScreenPart::slotToggleFullScreen( )
/*m_pFullScreen->setText( i18n( "Exit Full-Screen Mode" ) );
m_pFullScreen->setToolTip( i18n( "Exit full-screen mode" ) );
- m_pFullScreen->setIcon( "window_nofullscreen" );*/
+ m_pFullScreen->setIcon( "view-restore" );*/
} else {
//mw->menuBar()->show();
@@ -64,7 +64,7 @@ void FullScreenPart::slotToggleFullScreen( )
/*m_pFullScreen->setText( i18n( "&Full-Screen Mode" ) );
m_pFullScreen->setToolTip(i18n("Full-screen mode"));
- m_pFullScreen->setIcon( "window_fullscreen" );*/
+ m_pFullScreen->setIcon( "view-fullscreen" );*/
}
}