Commit 093c536e09572802c11f0b55a361ad86d7eb0aba

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

컴파일 오류 수정

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
app/gui/oven_control/dirtylevel.cpp
... ... @@ -11,13 +11,13 @@ int cookingCount;
11 11  
12 12 void DirtyLevel::cookStart()
13 13 {
14   - cookStartTime = QDateTime.currentDateTime();
  14 + cookStartTime = QDateTime::currentDateTime();
15 15 cookingCount++;
16 16 }
17 17  
18 18 void DirtyLevel::cookEnd()
19 19 {
20   - cookingTime += cookStartTime.secsTo(QDateTime.currentDateTime());
  20 + cookingTime += cookStartTime.secsTo(QDateTime::currentDateTime());
21 21 }
22 22  
23 23 int DirtyLevel::dirty()
... ...