• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

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

百人一首かるた自動読み上げソフト


Commit MetaInfo

Revisionc51b18fe2863f09f57ace9f07fd8523aee959dcc (tree)
Zeit2012-01-14 14:43:30
Autorarakaki <alucky4416@user...>
Commiterarakaki

Log Message

CHG: qDebug commentout, add about message of bass lib

Ändern Zusammenfassung

Diff

--- a/PlaySequenceThread.cpp
+++ b/PlaySequenceThread.cpp
@@ -257,7 +257,7 @@ void PlaySequenceThread::run()
257257 // Timer->Start()
258258 Counter = 0;
259259 CountMax = (Wait2_sec * 10); // this thread 100ms loop, 100ms * 10 = 1sec
260- qDebug() << "WAIT_2 Start";
260+ // qDebug() << "WAIT_2 Start";
261261 state = WAIT_2;
262262 }
263263 } else if (event == Ev_Abort) {
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -150,8 +150,11 @@ void MainWindow::on_actionAbout_triggered()
150150 QString Year = "2011";
151151 QString Author = "alucky4416@users.sourceforge.ne.jp";
152152 QString msg;
153- msg = QString("<h2>%1 %2</h2>"
154- "<p>Copyright &copy; %3 %4").arg(AppName).arg(Version).arg(Year).arg(Author);
153+ msg = QString("<h2>%1 %2</h2>" \
154+ "<p>use Qt4 (32bit)" \
155+ "<p>use BASS audio library" \
156+ "<p>" \
157+ "<p>Copyright &copy; %3 %4.").arg(AppName).arg(Version).arg(Year).arg(Author);
155158 QMessageBox::about(this, "About", msg);
156159 }
157160
@@ -317,7 +320,7 @@ void MainWindow::on_actionOption_triggered()
317320 if (i == QDialog::Accepted) {
318321 // qDebug() << "Ok";
319322 SelectVoice = dlg->Get_Opt_voice_select();
320- qDebug() << QString("Select %1").arg(SelectVoice);
323+// qDebug() << QString("Select %1").arg(SelectVoice);
321324 } else if (i == QDialog::Rejected) {
322325 // qDebug() << "Cancel";
323326 } else {
@@ -393,11 +396,11 @@ void MainWindow::on_Btn_FudaSelect_clicked()
393396
394397 int i = dlg->exec();
395398 if (i == QDialog::Accepted) {
396- qDebug() << "Ok";
399+// qDebug() << "Ok";
397400 } else if (i == QDialog::Rejected) {
398- qDebug() << "Cancel";
401+// qDebug() << "Cancel";
399402 } else {
400- qDebug() << "Unkown";
403+// qDebug() << "Unkown";
401404 }
402405
403406 delete dlg;