By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 245
Collapse All | Expand All

(-)a/konqueror/konq_guiclients.cc (-2 / +7 lines)
Lines 104-111 PopupMenuGUIClient::PopupMenuGUIClient( KonqMainWindow *mainWindow, Link Here
104
        openInSameWindow.setAttribute( "name", "sameview" );
104
        openInSameWindow.setAttribute( "name", "sameview" );
105
        openInSameWindow.setAttribute( "group", "tabhandling" );
105
        openInSameWindow.setAttribute( "group", "tabhandling" );
106
        menu.appendChild( openInSameWindow );
106
        menu.appendChild( openInSameWindow );
107
        
107
108
	TQDomElement openInWindow = m_doc.createElement( "action" );
108
        TQDomElement openInWindow = m_doc.createElement( "action" );
109
        openInWindow.setAttribute( "name", "newview" );
109
        openInWindow.setAttribute( "name", "newview" );
110
        openInWindow.setAttribute( "group", "tabhandling" );
110
        openInWindow.setAttribute( "group", "tabhandling" );
111
        menu.appendChild( openInWindow );
111
        menu.appendChild( openInWindow );
Lines 115-120 PopupMenuGUIClient::PopupMenuGUIClient( KonqMainWindow *mainWindow, Link Here
115
        openInTabElement.setAttribute( "group", "tabhandling" );
115
        openInTabElement.setAttribute( "group", "tabhandling" );
116
        menu.appendChild( openInTabElement );
116
        menu.appendChild( openInTabElement );
117
117
118
        TQDomElement openInTabFrontElement = m_doc.createElement( "action" );
119
        openInTabFrontElement.setAttribute( "name", "openintabfront" );
120
        openInTabFrontElement.setAttribute( "group", "tabhandling" );
121
        menu.appendChild( openInTabFrontElement );
122
118
        TQDomElement separatorElement = m_doc.createElement( "separator" );
123
        TQDomElement separatorElement = m_doc.createElement( "separator" );
119
        separatorElement.setAttribute( "group", "tabhandling" );
124
        separatorElement.setAttribute( "group", "tabhandling" );
120
        menu.appendChild( separatorElement );
125
        menu.appendChild( separatorElement );
(-)a/konqueror/konq_mainwindow.cc (-2 / +16 lines)
Lines 2726-2731 void KonqMainWindow::slotPopupThisWindow() Link Here
2726
    openURL( 0L, popupItems.getFirst()->url() );
2726
    openURL( 0L, popupItems.getFirst()->url() );
2727
}
2727
}
2728
2728
2729
void KonqMainWindow::slotPopupNewTabAtFront()
2730
{
2731
    KConfig *config = KGlobal::config();
2732
    KConfigGroupSaver cs( config, TQString::fromLatin1("FMSettings") );
2733
    bool openAfterCurrentPage = config->readBoolEntry( "OpenAfterCurrentPage", false );
2734
    popupNewTab(true, openAfterCurrentPage);
2735
}
2736
2729
void KonqMainWindow::slotPopupNewTab()
2737
void KonqMainWindow::slotPopupNewTab()
2730
{
2738
{
2731
    bool openAfterCurrentPage = KonqSettings::openAfterCurrentPage();
2739
    bool openAfterCurrentPage = KonqSettings::openAfterCurrentPage();
Lines 4782-4789 void KonqMainWindow::slotPopupMenu( KXMLGUIClient *client, const TQPoint &_globa Link Here
4782
      else
4790
      else
4783
        tab_new_x = "tab_new_bg" ;
4791
        tab_new_x = "tab_new_bg" ;
4784
4792
4785
      actNewTab = new KAction( i18n( "Open in &New Tab" ), tab_new_x, 0, TQT_TQOBJECT(this), TQT_SLOT( slotPopupNewTab() ), konqyMenuClient->actionCollection(), "openintab" );
4793
      KAction *actNewTab = new KAction( i18n( "Open in &Background Tab" ), "tab_new_bg", 0, TQT_TQOBJECT(this), TQT_SLOT( slotPopupNewTab() ), actionCollection(), "openintab" );
4786
      actNewTab->setToolTip( i18n( "Open the document in a new tab" ) );
4794
      actNewTab->setStatusText( i18n( "Open the document in a new background tab" ) );
4795
      KAction *actNewTabFront = new KAction( i18n( "Open in &New Tab" ), "tab_new", 0, TQT_TQOBJECT(this), TQT_SLOT( slotPopupNewTabAtFront() ), actionCollection(), "openintabfront" );
4796
      actNewTabFront->setStatusText( i18n( "Open the document in a new foreground tab" ) );
4797
      actNewTab = new KAction( i18n( "Open in &Background Tab" ), tab_new_x, 0, TQT_TQOBJECT(this), TQT_SLOT( slotPopupNewTab() ), konqyMenuClient->actionCollection(), "openintab" );
4798
      actNewTabFront = new KAction( i18n( "Open in &New Tab" ), tab_new_x, 0, TQT_TQOBJECT(this), TQT_SLOT( slotPopupNewTabAtFront() ), konqyMenuClient->actionCollection(), "openintabfront" );
4799
      actNewTab->setToolTip( i18n( "Open the document in a new background tab" ) );
4800
      actNewTabFront->setToolTip( i18n( "Open the document in a new foreground tab" ) );
4787
      doTabHandling = true;
4801
      doTabHandling = true;
4788
  }
4802
  }
4789
4803
(-)a/konqueror/konq_mainwindow.h (+1 lines)
Lines 444-449 protected slots: Link Here
444
  void slotPopupNewWindow();
444
  void slotPopupNewWindow();
445
  void slotPopupThisWindow();
445
  void slotPopupThisWindow();
446
  void slotPopupNewTab();
446
  void slotPopupNewTab();
447
  void slotPopupNewTabAtFront();
447
  void slotPopupNewTabRight();
448
  void slotPopupNewTabRight();
448
  void slotPopupPasteTo();
449
  void slotPopupPasteTo();
449
  void slotRemoveView();
450
  void slotRemoveView();

Return to bug 245