|
|
|
@ -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;
|
|
|
|
|
}
|
|
|
|
|