Commit 2bc03da304be233215dae85ef252cebb223afcda

Authored by 김태훈
1 parent 77522c349e
Exists in master and in 2 other branches fhd, fhd-demo

컴파일 오류 제거

app/gui/oven_control/cookbook.cpp
@@ -57,7 +57,7 @@ CookBook::CookBook(Define::CookType type) @@ -57,7 +57,7 @@ CookBook::CookBook(Define::CookType type)
57 } 57 }
58 58
59 int cookNameSection; 59 int cookNameSection;
60 - Define::language_type lang = (Define::language_type) Config::getConfigValue(Define::config_language).d32; 60 + Define::language_type lang = (Define::language_type) Config::getInstance()->getConfigValue(Define::config_language).d32;
61 switch (lang) 61 switch (lang)
62 { 62 {
63 case Define::language_kr: 63 case Define::language_kr:
app/gui/oven_control/slider.h
@@ -18,11 +18,11 @@ class Slider : public QWidget @@ -18,11 +18,11 @@ class Slider : public QWidget
18 QPixmap sub; 18 QPixmap sub;
19 QPixmap handle; 19 QPixmap handle;
20 20
21 - int grooveMin;  
22 - int grooveMax; 21 + int minSliderX;
  22 + int maxSliderX;
23 23
24 - QPoint groovePoint;  
25 - QPoint subPoint; 24 + QPoint grooveLeftTop;
  25 + QPoint subLeftTop;
26 26
27 bool subVisible_; 27 bool subVisible_;
28 bool focused; 28 bool focused;