修订版 | 6a5f079fc04eff9b306e61be966238d8d72a6441 (tree) |
---|---|
时间 | 2014-01-10 08:52:07 |
作者 | alucky4416 <alucky4416@user...> |
Commiter | alucky4416 |
CHG: comment-out qDebug() output messages.
@@ -152,7 +152,7 @@ void MainWindow::LoadSaveSetting(QString filepath, bool store = false) | ||
152 | 152 | Holidays.clear(); |
153 | 153 | Holidays.append(list1); |
154 | 154 | } |
155 | - qDebug() << Holidays; | |
155 | + // qDebug() << Holidays; | |
156 | 156 | } |
157 | 157 | } |
158 | 158 |
@@ -351,11 +351,13 @@ void MainWindow::on_pushButton_RegistHoliday_clicked() | ||
351 | 351 | Holidays.clear(); |
352 | 352 | qDebug() << Holidays; |
353 | 353 | Holidays.append(dlg->HolidaysList()); |
354 | - qDebug() << Holidays; | |
354 | + // qDebug() << Holidays; | |
355 | 355 | } else if (i == QDialog::Rejected) { |
356 | - qDebug() << "Cancel"; | |
356 | + // qDebug() << "Cancel"; | |
357 | + ; | |
357 | 358 | } else { |
358 | - qDebug() << "Unkown"; | |
359 | + // qDebug() << "Unkown"; | |
360 | + ; | |
359 | 361 | } |
360 | 362 | |
361 | 363 | delete dlg; |
@@ -40,7 +40,7 @@ void ThSchManager::run() | ||
40 | 40 | } else { |
41 | 41 | // Time Check |
42 | 42 | if (isMatchSchTimeVsCurrentTime(&nexttime)) { |
43 | - qDebug() << "### Time Match!"; | |
43 | + // qDebug() << "### Time Match!"; | |
44 | 44 | // Chime Start |
45 | 45 | ThPlayMusic->PlayMusic(ChimeFilepath); |
46 | 46 |
@@ -51,7 +51,7 @@ void ThSchManager::run() | ||
51 | 51 | index = 0; |
52 | 52 | nexttime = SchTimeList.at(index); |
53 | 53 | emit sig_notify_nexttime(nexttime); |
54 | - qDebug() << "### next time : " << nexttime; | |
54 | + // qDebug() << "### next time : " << nexttime; | |
55 | 55 | } else { |
56 | 56 | sleep(1); |
57 | 57 | } |
@@ -66,11 +66,11 @@ void ThSchManager::run() | ||
66 | 66 | case Ev_Start: |
67 | 67 | if (status == 0) { // idle |
68 | 68 | // Start; |
69 | - qDebug() << "### Start!"; | |
69 | + // qDebug() << "### Start!"; | |
70 | 70 | index = nextSchTimeIndex(&SchTimeList); |
71 | 71 | nexttime = SchTimeList.at(index); |
72 | 72 | emit sig_notify_nexttime(nexttime); |
73 | - qDebug() << "### next time : " << nexttime; | |
73 | + // qDebug() << "### next time : " << nexttime; | |
74 | 74 | status = 1; // goto EXEC |
75 | 75 | } |
76 | 76 | break; |
@@ -78,7 +78,7 @@ void ThSchManager::run() | ||
78 | 78 | if (status == 1) { |
79 | 79 | // Stop; |
80 | 80 | emit sig_notify_nexttime("idle..."); |
81 | - qDebug() << "### Stop!"; | |
81 | + // qDebug() << "### Stop!"; | |
82 | 82 | status = 0; // goto IDLE |
83 | 83 | } |
84 | 84 | break; |
@@ -123,7 +123,7 @@ void ThSchManager::setSchTimeList(QStringList list) | ||
123 | 123 | |
124 | 124 | SchTimeList.clear(); |
125 | 125 | SchTimeList = list; |
126 | - qDebug() << "ThSchManager::SchTimeList:" << SchTimeList; | |
126 | + // qDebug() << "ThSchManager::SchTimeList:" << SchTimeList; | |
127 | 127 | } |
128 | 128 | |
129 | 129 | void ThSchManager::setHolidaysList(QStringList list) |
@@ -132,7 +132,7 @@ void ThSchManager::setHolidaysList(QStringList list) | ||
132 | 132 | |
133 | 133 | HolidaysList.clear(); |
134 | 134 | HolidaysList = list; |
135 | - qDebug() << "ThSchManager::HolidaysList:" << HolidaysList; | |
135 | + // qDebug() << "ThSchManager::HolidaysList:" << HolidaysList; | |
136 | 136 | } |
137 | 137 | |
138 | 138 | void ThSchManager::setExcludeSS(bool flag) |