Fix typos 24/216924/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 5 Nov 2019 02:36:12 +0000 (11:36 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 5 Nov 2019 02:36:12 +0000 (11:36 +0900)
Change-Id: I38dd78de47dda63cbb8ec992fab35760377419b1
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
inc/app-assist-efl/WApp.h
inc/app-assist-efl/WPageSlideViewController.h
inc/app-assist-efl/WWindowController.h
src/app-assist-efl/WViewController.cpp
src/app/CDrApp.cpp
src/controls/CDrCairoImage.h
src/controls/Drawing.cpp

index d485c5c97786bb73b9eb43484fab41b545e09c3f..6083f0036e50444e117d555ceb7735d8daf5682c 100755 (executable)
@@ -123,7 +123,7 @@ protected:
         * Attaches a window to the application.
         *
         * @param[in]   win     A pointer to the window to attach
-        * @return      true if the window attached sucessfully, else false
+        * @return      true if the window attached successfully, else false
         */
        bool attachWindowController(WWindowController* win);
 
index c895dd315ee1258e944819b71e1fb29cd83a8a34..c03c65efb5cca542def524f66b0564918e251d07 100755 (executable)
@@ -43,7 +43,7 @@ public:
        WPageSlideViewController();
 
        /**
-        * Retuns the class name string
+        * Returns the class name string
         *
         * @return class name
         */
index 344eeb534a96732fa3bbe969d26a187ab512b6c7..4f47647b35f594d2452920583089786a88959cae 100755 (executable)
@@ -57,7 +57,7 @@ public:
         * Creates the windows
         * "onCreateWin" and "onCreateBaseLayout" will be called subsequently.
         *
-        * @return true if the windows created sucessfully, else false
+        * @return true if the windows created successfully, else false
         * @see onCreateWin()
         * @see onCreateBaseLayout()
         */
@@ -67,7 +67,7 @@ public:
         * Creates the windows but not be shown
         * "onCreateWin" and "onCreateBaseLayout" will be called subsequently.
         *
-        * @return true if the windows created sucessfully, else false
+        * @return true if the windows created successfully, else false
         * @see create()
         * @see onCreateWin()
         * @see onCreateBaseLayout()
@@ -119,7 +119,7 @@ public:
         * @param[in]   baseObj WViewController instance to be attached
         * @param[in]   creationParam   parameter to be passed as parameter of create method of the WViewController class
         *
-        * @return true if the base ui object attached sucessfully, else false
+        * @return true if the base ui object attached successfully, else false
         * @see getBaseViewController()
         */
        bool attachBaseViewController(WViewController* vc, void* creationParam);
index e34d35def5550c167a645923ceb06e861bd31464..84819d883db958213e17c7414fcf5fda73b7f215 100644 (file)
@@ -80,7 +80,7 @@ bool WViewController::create(Evas_Object* parent, void* param)
             break;
         }
     }
-    WASSERT_EX(__pv->__windowController != nullptr, "Cannot find window controll.");
+    WASSERT_EX(__pv->__windowController != nullptr, "Cannot find window control.");
 
     if (__pv->__name) {    // for easy debugging
         evas_object_name_set(__pv->__obj, __pv->__name);
index 17186ae270ce9af9fc9664c5d576e7ae1369286f..434a9594014879f04f977870b87b092410878cfc 100755 (executable)
@@ -57,7 +57,7 @@ Eina_Bool CDrApp::_onCloseTimer(void *data)
 
 bool CDrApp::onCreate()
 {
-       /* regitering sigterm  */
+       /* registering sigterm  */
        if (signal(SIGTERM, CDrApp::_onSigtermHanlder) == SIG_IGN) {
                WINFO("SIG_IGN SIGTERM");
                signal(SIGTERM, SIG_IGN);
index cb81a04b47b0bc4092bc3441882d0449145aba2c..6a185dc8dd41a06f28e624de7676a3d9e566f040 100755 (executable)
@@ -166,7 +166,7 @@ public:
        void saveImageBuffer(int w, int h);
        void Clear(DrawingColor* pColor);
        void SetDrawingProperty(DrawingColor* pColor);
-       /* normal drawing + effect: stroke alpha and strke width changes */
+       /* normal drawing + effect: stroke alpha and stroke width changes */
        void Draw(CLasso &lasso, double rw, double rh, int w, int h);
        /* animation draw when undoing or redoing */
        static Eina_Bool animationDraw(void *data, double pos);
index 99c5aaac30e2475627e0bf2fa8d0ed0c1f3d038a..9b39b80edebb9e6eac2118e4b99faa76391fc1d8 100755 (executable)
@@ -670,7 +670,7 @@ void Drawing::_smartMove(Evas_Object *obj, Evas_Coord x, Evas_Coord y)
 {
        struct Smart_Data *sd = (struct Smart_Data *) evas_object_smart_data_get(obj);
 
-       /*  Below line is commetned to enable selection of lasso crop region for the first time, if the code returns from here so called are not called */
+       /*  Below line is commented to enable selection of lasso crop region for the first time, if the code returns from here so called are not called */
 
        /* if ((sd->cRect.x == x) && (sd->cRect.y == y)) return; */
 
@@ -687,7 +687,7 @@ void Drawing::_smartResize(Evas_Object *obj, Evas_Coord w, Evas_Coord h)
 {
        struct Smart_Data *sd = (struct Smart_Data *) evas_object_smart_data_get(obj);
 
-       /*  Below line is commetned to enable selection of lasso crop region for the first time, if the code returns from here so called are not called */
+       /*  Below line is commented to enable selection of lasso crop region for the first time, if the code returns from here so called are not called */
 
        /* if ((sd->cRect.w == w) && (sd->cRect.h == h))  return;  */