modify member variable name in CtxPopup class 74/38174/1
authorJehun Lim <jehun.lim@samsung.com>
Tue, 14 Apr 2015 06:21:49 +0000 (15:21 +0900)
committerJehun Lim <jehun.lim@samsung.com>
Tue, 14 Apr 2015 06:21:49 +0000 (15:21 +0900)
Change-Id: I0db9829dafbdbe717b179744000a5aefdf2ea18f
Signed-off-by: Jehun Lim <jehun.lim@samsung.com>
include/view/gallery-view/SortCtxPopup.h
include/view/gallery-view/SourceCtxPopup.h
include/view/photo-viewer/SettingCtxPopup.h
src/view/gallery-view/SortCtxPopup.cpp
src/view/gallery-view/SourceCtxPopup.cpp
src/view/photo-viewer/SettingCtxPopup.cpp

index d84b14d..0aee166 100644 (file)
@@ -19,7 +19,7 @@
 
 class CSortCtxPopup : public CCtxPopup {
 private:
-       int sort_type;
+       int m_sortType;
 
 protected:
        virtual void t_OnConfiguration(void);
index 3a536b4..c085408 100644 (file)
@@ -19,7 +19,7 @@
 
 class CSourceCtxPopup : public CCtxPopup {
 private:
-       int source_type;
+       int m_sourceType;
 
 protected:
        virtual void t_OnConfiguration(void);
index ef8cbc5..be1777b 100644 (file)
@@ -19,7 +19,7 @@
 
 class CSettingCtxPopup : public CCtxPopup {
 private:
-       int slideshow_speed;
+       int m_slideshowSpeed;
 
 protected:
        virtual void t_OnConfiguration(void);
index 7e1c423..dd852d5 100644 (file)
@@ -31,7 +31,7 @@
 
 void CSortCtxPopup::t_OnConfiguration(void)
 {
-       t_SetList(sorttext, SORT_TEXT_SIZE, sort_type,
+       t_SetList(sorttext, SORT_TEXT_SIZE, m_sortType,
                        CCtxPopup::TOPBTN_SORT, sort_btn_id,
                        POSITION_SORT_POPUP_X, POSITION_SORT_POPUP_Y,
                        NULL,
@@ -49,5 +49,5 @@ void CSortCtxPopup::t_OnBtnClicked(Evas_Object *obj, void  *ev)
 
 void CSortCtxPopup::SetSortType(int type)
 {
-       sort_type = type;
+       m_sortType = type;
 }
index a22c581..57adc8a 100644 (file)
@@ -31,7 +31,7 @@
 
 void CSourceCtxPopup::t_OnConfiguration(void)
 {
-       t_SetList(sourcetext, SOURCE_TEXT_SIZE, source_type,
+       t_SetList(sourcetext, SOURCE_TEXT_SIZE, m_sourceType,
                        CCtxPopup::TOPBTN_SOURCE, source_btn_id,
                        POSITION_SOURCE_POPUP_X, POSITION_SOURCE_POPUP_Y,
                        NULL,
@@ -49,5 +49,5 @@ void CSourceCtxPopup::t_OnBtnClicked(Evas_Object *obj, void  *ev)
 
 void CSourceCtxPopup::SetSourceType(int type)
 {
-       source_type = type;
+       m_sourceType = type;
 }
index f049fac..85e45e6 100644 (file)
@@ -28,7 +28,7 @@
 
 void CSettingCtxPopup::t_OnConfiguration(void)
 {
-       t_SetList(speed_text, MAX_SPEED_BTNS, slideshow_speed,
+       t_SetList(speed_text, MAX_SPEED_BTNS, m_slideshowSpeed,
                        CCtxPopup::TOPBTN_BASE, speed_btn_id,
                        POSITION_SETTING_POPUP_X, POSITION_SETTING_POPUP_Y,
                        NULL,
@@ -46,5 +46,5 @@ void CSettingCtxPopup::t_OnBtnClicked(Evas_Object *obj, void  *ev)
 
 void CSettingCtxPopup::SetSlideshowSpeed(int speed)
 {
-       slideshow_speed = speed;
+       m_slideshowSpeed = speed;
 }