Fix minor api issue and an used variable warning.

svn path=/trunk/KDE/kdebase/apps/konsole/; revision=1059042
wilder-portage
Kurt Hindenburg 17 years ago
parent 662e89bfc1
commit d1469fb39e
  1. 2
      src/MainWindow.h
  2. 1
      src/ViewContainer.cpp

@ -115,7 +115,7 @@ class MainWindow : public KXmlGuiWindow
* Emitted by the main window to request the creation of a new SSH session.
*
* @param profile The profile to use to create the new session.
* @param URL URL for the new session
* @param url URL for the new session
* @param view The view manager owned by this main window
*/
void newSSHSessionRequest(Profile::Ptr profile,

@ -813,6 +813,7 @@ void StackedViewContainer::removeViewWidget( QWidget* view )
const int index = _stackWidget->indexOf(view);
Q_ASSERT( index != -1);
Q_UNUSED(index);
_stackWidget->removeWidget(view);
}

Loading…
Cancel
Save