summaryrefslogtreecommitdiffstats
path: root/src/controllers/controllermanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/controllers/controllermanager.cpp')
-rw-r--r--src/controllers/controllermanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/controllers/controllermanager.cpp b/src/controllers/controllermanager.cpp
index 54029398d4..d6d4592bd2 100644
--- a/src/controllers/controllermanager.cpp
+++ b/src/controllers/controllermanager.cpp
@@ -100,11 +100,11 @@ ControllerManager::ControllerManager(UserSettingsPointer pConfig)
// Signal that we should run slotInitialize once our event loop has started
// up.
- emit(requestInitialize());
+ emit requestInitialize();
}
ControllerManager::~ControllerManager() {
- emit(requestShutdown());
+ emit requestShutdown();
m_pThread->wait();
delete m_pThread;
delete m_pControllerLearningEventFilter;
@@ -176,7 +176,7 @@ void ControllerManager::updateControllerList() {
if (newDeviceList != m_controllers) {
m_controllers = newDeviceList;
locker.unlock();
- emit(devicesChanged());
+ emit devicesChanged();
}
}