Fix the function name due to spell mistake
[apps/agl-service-windowmanager.git] / src / window_manager.cpp
index 98883a5..50e2f85 100644 (file)
@@ -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();