aboutsummaryrefslogtreecommitdiffstats
path: root/src/window_manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/window_manager.cpp')
-rw-r--r--src/window_manager.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/window_manager.cpp b/src/window_manager.cpp
index 98883a5..50e2f85 100644
--- a/src/window_manager.cpp
+++ b/src/window_manager.cpp
@@ -91,8 +91,7 @@ struct result<layer_map> load_layer_map(char const *filename)
return to_layer_map(jids);
}
-static int
-processTimerHandler(sd_event_source *s, uint64_t usec, void *userdata)
+static int processTimerHandler(sd_event_source *s, uint64_t usec, void *userdata)
{
HMI_NOTICE("wm", "Time out occurs because the client replys endDraw slow, so revert the request");
reinterpret_cast<wm::WindowManager *>(userdata)->timerHandler();
@@ -116,10 +115,10 @@ void WindowManager::removeClient(const std::string &appid)
g_app_list.removeClient(appid);
}
-void WindowManager::exeptionProcessForTransition()
+void WindowManager::exceptionProcessForTransition()
{
unsigned req_num = g_app_list.currentRequestNumber();
- HMI_SEQ_NOTICE(req_num, "Process exeption handling for request. Remove current request %d", req_num);
+ HMI_SEQ_NOTICE(req_num, "Process exception handling for request. Remove current request %d", req_num);
g_app_list.removeRequest(req_num);
HMI_SEQ_NOTICE(g_app_list.currentRequestNumber(), "Process next request if exists");
this->processNextRequest();