diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-10-16 04:12:28 -0700 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-10-16 04:43:43 -0700 |
commit | 387e8bfa063d5c3038907b56c121916741c5dc10 (patch) | |
tree | 007901537ae4ef7d87f96802ba50d2f924adedbd /MainApp.cpp | |
parent | 8aaa6c7782cdfa39368c1f91515d0b96b59cea58 (diff) |
poi-yelp: remove unused allSessionsGot slot
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>
Diffstat (limited to 'MainApp.cpp')
-rw-r--r-- | MainApp.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/MainApp.cpp b/MainApp.cpp index 4bb10ba..a7feede 100644 --- a/MainApp.cpp +++ b/MainApp.cpp @@ -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(); |