Fix the navigation bar's split and close buttons.

This commit is contained in:
con
2009-07-17 10:27:04 +02:00
parent 063f0476da
commit d88fceb202

View File

@@ -392,8 +392,8 @@ NavigationSubWidget::NavigationSubWidget(NavigationWidget *parentWidget)
setLayout(lay);
lay->addWidget(m_toolBar);
connect(splitAction, SIGNAL(triggered(QAction*)), this, SIGNAL(split()));
connect(close, SIGNAL(triggered(QAction*)), this, SIGNAL(close()));
connect(splitAction, SIGNAL(clicked()), this, SIGNAL(split()));
connect(close, SIGNAL(clicked()), this, SIGNAL(close()));
connect(m_navigationComboBox, SIGNAL(currentIndexChanged(int)),
this, SLOT(setCurrentIndex(int)));