poi-yelp: remove unused allSessionsGot slot 91/22691/1
authorMatt Ranostay <matt.ranostay@konsulko.com>
Wed, 16 Oct 2019 11:12:28 +0000 (04:12 -0700)
committerMatt Ranostay <matt.ranostay@konsulko.com>
Wed, 16 Oct 2019 11:43:43 +0000 (04:43 -0700)
Part of the effort to cleanup DBus usage for navigation to JSON
events remove all unused sections of the application.

Bug-AGL: SPEC-2880
Change-Id: Ie6bebb5e4e935676ca57c3fa5c6826a28d01d4df
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
MainApp.cpp
MainApp.h

index 4bb10ba..a7feede 100644 (file)
@@ -98,7 +98,6 @@ MainApp::MainApp():QMainWindow(Q_NULLPTR, Qt::FramelessWindowHint),
     if (getenv("AGL_NAVI"))
         isAglNavi = true;
 
-    connect(this, SIGNAL(allSessionsGotSignal()), this, SLOT(allSessionsGot()));
     connect(this, SIGNAL(positionGotSignal()), this, SLOT(positionGot()));
     connect(this, SIGNAL(allRoutesGotSignal()), this, SLOT(allRoutesGot()));
     connect(this, SIGNAL(routeCreatedSignal()), this, SLOT(routeCreated()));
@@ -931,8 +930,6 @@ void MainApp::getAllSessions_reply(const std::map< uint32_t, std::string >& allS
     TRACE_INFO("Current session: %d", this->navicoreSession);
 
     mutex.unlock();
-
-    emit allSessionsGotSignal();
 }
 
 
@@ -989,15 +986,6 @@ void MainApp::createRoute_reply(uint32_t routeHandle)
     emit routeCreatedSignal();
 }
 
-void MainApp::allSessionsGot()
-{
-    mutex.lock();
-
-    // nothing to do
-
-    mutex.unlock();
-}
-
 void MainApp::positionGot()
 {
     mutex.lock();
index 7e80c32..0f3d174 100644 (file)
--- a/MainApp.h
+++ b/MainApp.h
@@ -83,7 +83,6 @@ class MainApp: public QMainWindow, public naviapi::NavicoreListener
         void goClicked();
         void cancelClicked();
 
-        void allSessionsGot();
         void positionGot();
         void allRoutesGot();
         void routeCreated();