summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/widgets/kdevhtmlpart.cpp4
1 files changed, 2 insertions, 2 deletions
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;
}