UNKOWN -> UNKNOWN
Change-Id: I11836fe207fc2f7f116883ecc963389ca072cf65
*
* @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:
/**
*/
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,
break;
}
- return UI_VIEW_ORIENTATION_MODE_UNKOWN;
+ return UI_VIEW_ORIENTATION_MODE_UNKNOWN;
}
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();
}