Fix the function name due to spell mistake
[apps/agl-service-windowmanager.git] / src / main.cpp
index 85abf24..b2088d1 100644 (file)
@@ -375,7 +375,7 @@ void windowmanager_activatesurface(afb_req req) noexcept
     catch (std::exception &e)
     {
         HMI_WARNING("wm", "failed: Uncaught exception while calling activatesurface: %s", e.what());
-        g_afb_instance->wmgr.exeptionProcessForTransition();
+        g_afb_instance->wmgr.exceptionProcessForTransition();
         return;
     }
 }
@@ -416,7 +416,7 @@ void windowmanager_deactivatesurface(afb_req req) noexcept
     catch (std::exception &e)
     {
         HMI_WARNING("wm", "failed: Uncaught exception while calling deactivatesurface: %s", e.what());
-        g_afb_instance->wmgr.exeptionProcessForTransition();
+        g_afb_instance->wmgr.exceptionProcessForTransition();
         return;
     }
 }
@@ -449,7 +449,7 @@ void windowmanager_enddraw(afb_req req) noexcept
     catch (std::exception &e)
     {
         HMI_WARNING("wm", "failed: Uncaught exception while calling enddraw: %s", e.what());
-        g_afb_instance->wmgr.exeptionProcessForTransition();
+        g_afb_instance->wmgr.exceptionProcessForTransition();
         return;
     }
 }