ui: modify class name
authorGiWoong Kim <giwoong.kim@samsung.com>
Tue, 17 Nov 2015 02:00:18 +0000 (11:00 +0900)
committerSeokYeon Hwang <syeon.hwang@samsung.com>
Tue, 17 Nov 2015 05:07:55 +0000 (14:07 +0900)
UIUtil -> UiUtil

Change-Id: Ib9dc133c740266eb63a8d39ad766664268ef30a5
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
tizen/src/ui/menu/contextmenu.cpp
tizen/src/ui/qt5_supplement.cpp
tizen/src/ui/uiutil.cpp
tizen/src/ui/uiutil.h

index d24cae44a302d963c2daa217a309c05c820a124e..90f77dea6ccd7dda0b7a49e70eb67b92ad859967 100644 (file)
@@ -649,12 +649,12 @@ void ContextMenu::slotTopMost(bool on)
         widget = list.at(i);
         if (widget->isWindow() && widget->parentWidget() == parent &&
             this != widget) {
-            UIUtil::setTopMost(widget, on);
+            UiUtil::setTopMost(widget, on);
         }
     }
 #endif
 
-    UIUtil::setTopMost(parent, on);
+    UiUtil::setTopMost(parent, on);
 
     actionTopMost->setChecked(on);
     parent->getUiState()->setOnTop(on);
index 12d4f4f0ea947040f0130edc6f2beac86ebc3eb7..5d722d2604b13b3439a36b34d605052f917cdd1d 100644 (file)
@@ -210,7 +210,7 @@ static void qt5_gui_init(void)
     mainwindow->setCaptureRequestHandler(captureRequestListener, captureRequestHandler);
 
     /* position */
-    QRect hostBounds = UIUtil::getHostScreenBounds();
+    QRect hostBounds = UiUtil::getHostScreenBounds();
     qDebug() << "host geometry:" << hostBounds;
 
     int defaultValueX = hostBounds.x() - 1;
index d476ab5818179bc1af20aae1a80031153d06c88a..ea997d468295d8b3446918418071aa5155f9d9e4 100644 (file)
 
 #include "uiutil.h"
 
-UIUtil::UIUtil()
+UiUtil::UiUtil()
 {
     /* do nothing */
 }
 
-QRect UIUtil::getHostScreenBounds()
+QRect UiUtil::getHostScreenBounds()
 {
     return QApplication::screens().at(
         QApplication::desktop()->primaryScreen())->virtualGeometry();
 }
 
-void UIUtil::setTopMost(QWidget *widget, bool on)
+void UiUtil::setTopMost(QWidget *widget, bool on)
 {
     if (widget == NULL) {
         return;
index 8edd7a3bb1af9082960c852e4771199d8bcfc672..5df4837408268a72a82a0ecf57eefe77a5a7fb9c 100644 (file)
 #include <X11/Xatom.h>
 #endif
 
-class UIUtil
+class UiUtil
 {
 public:
-    UIUtil();
+    UiUtil();
 
     static QRect getHostScreenBounds();
     static void setTopMost(QWidget *widget, bool on);