diff --git a/MantidQt/CustomInterfaces/inc/MantidQtCustomInterfaces/Reflectometry/QtReflMainView.h b/MantidQt/CustomInterfaces/inc/MantidQtCustomInterfaces/Reflectometry/QtReflMainView.h
index c6aee1666f771b6ccd12545323046c04f9048a7e..666af86d7db8fae3aabd906b9f26c99eee6bfce9 100644
--- a/MantidQt/CustomInterfaces/inc/MantidQtCustomInterfaces/Reflectometry/QtReflMainView.h
+++ b/MantidQt/CustomInterfaces/inc/MantidQtCustomInterfaces/Reflectometry/QtReflMainView.h
@@ -148,8 +148,7 @@ private slots:
   void on_actionPlotRow_triggered();
   void on_actionPlotGroup_triggered();
   void on_actionSlitCalculator_triggered();
-
-  void on_icatSearchComplete_triggered();
+  void icatSearchComplete();
 
   void on_comboSearchInstrument_currentIndexChanged(int index);
   void on_comboProcessInstrument_currentIndexChanged(int index);
diff --git a/MantidQt/CustomInterfaces/src/Reflectometry/QtReflMainView.cpp b/MantidQt/CustomInterfaces/src/Reflectometry/QtReflMainView.cpp
index fb305c4376ca8efac57a771f824e9dae942012a2..dfc4d212e095e565e9d6f8d459c7028e0cfa8641 100644
--- a/MantidQt/CustomInterfaces/src/Reflectometry/QtReflMainView.cpp
+++ b/MantidQt/CustomInterfaces/src/Reflectometry/QtReflMainView.cpp
@@ -134,7 +134,7 @@ void QtReflMainView::setTableList(const std::set<std::string> &tables) {
   }
 }
 
-void QtReflMainView::on_icatSearchComplete_triggered() {
+void QtReflMainView::icatSearchComplete() {
   m_presenter->notify(IReflPresenter::ICATSearchCompleteFlag);
 }
 
@@ -247,7 +247,7 @@ This slot notifies the presenter that the "search" button has been pressed
 void QtReflMainView::on_actionSearch_triggered() {
   m_presenter->notify(IReflPresenter::SearchFlag);
   connect(m_algoRunner.get(), SIGNAL(algorithmComplete(bool)), this,
-          SLOT(on_icatSearchComplete_triggered()));
+          SLOT(icatSearchComplete()));
 }
 
 /**