• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修订版6a5f079fc04eff9b306e61be966238d8d72a6441 (tree)
时间2014-01-10 08:52:07
作者alucky4416 <alucky4416@user...>
Commiteralucky4416

Log Message

CHG: comment-out qDebug() output messages.

更改概述

差异

--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -152,7 +152,7 @@ void MainWindow::LoadSaveSetting(QString filepath, bool store = false)
152152 Holidays.clear();
153153 Holidays.append(list1);
154154 }
155- qDebug() << Holidays;
155+ // qDebug() << Holidays;
156156 }
157157 }
158158
@@ -351,11 +351,13 @@ void MainWindow::on_pushButton_RegistHoliday_clicked()
351351 Holidays.clear();
352352 qDebug() << Holidays;
353353 Holidays.append(dlg->HolidaysList());
354- qDebug() << Holidays;
354+ // qDebug() << Holidays;
355355 } else if (i == QDialog::Rejected) {
356- qDebug() << "Cancel";
356+ // qDebug() << "Cancel";
357+ ;
357358 } else {
358- qDebug() << "Unkown";
359+ // qDebug() << "Unkown";
360+ ;
359361 }
360362
361363 delete dlg;
--- a/thschmanager.cpp
+++ b/thschmanager.cpp
@@ -40,7 +40,7 @@ void ThSchManager::run()
4040 } else {
4141 // Time Check
4242 if (isMatchSchTimeVsCurrentTime(&nexttime)) {
43- qDebug() << "### Time Match!";
43+ // qDebug() << "### Time Match!";
4444 // Chime Start
4545 ThPlayMusic->PlayMusic(ChimeFilepath);
4646
@@ -51,7 +51,7 @@ void ThSchManager::run()
5151 index = 0;
5252 nexttime = SchTimeList.at(index);
5353 emit sig_notify_nexttime(nexttime);
54- qDebug() << "### next time : " << nexttime;
54+ // qDebug() << "### next time : " << nexttime;
5555 } else {
5656 sleep(1);
5757 }
@@ -66,11 +66,11 @@ void ThSchManager::run()
6666 case Ev_Start:
6767 if (status == 0) { // idle
6868 // Start;
69- qDebug() << "### Start!";
69+ // qDebug() << "### Start!";
7070 index = nextSchTimeIndex(&SchTimeList);
7171 nexttime = SchTimeList.at(index);
7272 emit sig_notify_nexttime(nexttime);
73- qDebug() << "### next time : " << nexttime;
73+ // qDebug() << "### next time : " << nexttime;
7474 status = 1; // goto EXEC
7575 }
7676 break;
@@ -78,7 +78,7 @@ void ThSchManager::run()
7878 if (status == 1) {
7979 // Stop;
8080 emit sig_notify_nexttime("idle...");
81- qDebug() << "### Stop!";
81+ // qDebug() << "### Stop!";
8282 status = 0; // goto IDLE
8383 }
8484 break;
@@ -123,7 +123,7 @@ void ThSchManager::setSchTimeList(QStringList list)
123123
124124 SchTimeList.clear();
125125 SchTimeList = list;
126- qDebug() << "ThSchManager::SchTimeList:" << SchTimeList;
126+ // qDebug() << "ThSchManager::SchTimeList:" << SchTimeList;
127127 }
128128
129129 void ThSchManager::setHolidaysList(QStringList list)
@@ -132,7 +132,7 @@ void ThSchManager::setHolidaysList(QStringList list)
132132
133133 HolidaysList.clear();
134134 HolidaysList = list;
135- qDebug() << "ThSchManager::HolidaysList:" << HolidaysList;
135+ // qDebug() << "ThSchManager::HolidaysList:" << HolidaysList;
136136 }
137137
138138 void ThSchManager::setExcludeSS(bool flag)