Fix typo. 01/91601/1
authorWoochan Lee <wc0917.lee@samsung.com>
Mon, 10 Oct 2016 09:54:48 +0000 (18:54 +0900)
committerWoochan Lee <wc0917.lee@samsung.com>
Mon, 10 Oct 2016 09:55:17 +0000 (18:55 +0900)
UNKOWN -> UNKNOWN

Change-Id: I11836fe207fc2f7f116883ecc963389ca072cf65

src/include/interface/UiIfaceRotatable.h
src/include/interface/UiIfaceTypes.h
src/lib/efl/mobile/UiView.cpp
src/lib/efl/mobile/c/ui_view.cpp

index 5130a57315701e7ce20fdd61c0d9fb7df7ce97ef..cf18a2b1fe31bbb5c75d381d3e6423dfd64276a1 100644 (file)
@@ -44,7 +44,7 @@ public:
         *
         *  @return Current orientation mode, one of #UiViewOrientationMode.
         */
-       virtual UiViewOrientationMode getOrientationMode() { return UI_VIEW_ORIENTATION_MODE_UNKOWN; }
+       virtual UiViewOrientationMode getOrientationMode() { return UI_VIEW_ORIENTATION_MODE_UNKNOWN; }
 
 protected:
        /**
index 66282726e09ede98996f06495bcf8408eb9f6f69..837c1e57d58e8529e36ff4f9af6680de34c7eae4 100644 (file)
@@ -53,7 +53,7 @@ typedef enum UiViewState
  */
 typedef enum UiViewOrientationMode
 {
-       UI_VIEW_ORIENTATION_MODE_UNKOWN = 0,  /**< Unknown state (Exceptional case) */
+       UI_VIEW_ORIENTATION_MODE_UNKNOWN = 0,  /**< Unknown state (Exceptional case) */
        UI_VIEW_ORIENTATION_MODE_PORTRAIT,    /**< Portrait state */
        UI_VIEW_ORIENTATION_MODE_LANDSCAPE,   /**< Landscape state */
        UI_VIEW_ORIENTATION_MODE_LAST,
index cff32ec4faa3168b0523db8ac7686dffee7e4f57..fd3cd393c0810b0c48d7d22a69edbc47af094da2 100644 (file)
@@ -173,7 +173,7 @@ UiViewOrientationMode UiViewImpl::getOrientationMode()
                        break;
                }
 
-       return UI_VIEW_ORIENTATION_MODE_UNKOWN;
+       return UI_VIEW_ORIENTATION_MODE_UNKNOWN;
 }
 
 
index 9fd487b557af9ecc186784a99356c166310adbc9..545c19d1142ff892f4ac1cf95ff0a8dc7497830d 100644 (file)
@@ -291,7 +291,7 @@ EAPI int ui_view_get_degree(ui_view *view)
 
 EAPI ui_view_orientation_mode ui_view_get_orientation_mode(ui_view *view)
 {
-       if (TIZEN_ERROR_NONE != validate_view(view)) return UI_VIEW_ORIENTATION_MODE_UNKOWN;
+       if (TIZEN_ERROR_NONE != validate_view(view)) return UI_VIEW_ORIENTATION_MODE_UNKNOWN;
        return view->getOrientationMode();
 }