Skip to content

Commit

Permalink
bug in showing build time is resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
Asitha committed Jan 7, 2014
1 parent 2035c68 commit df89546
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NoobaFE/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ void MainWindow::on_actionAbout_NoobaVSS_triggered()
QString("<h2 style=\"font-family:sans-serif;\" >NoobaVSS %1.%2 (%3)</h2>"
"<p>Nooba Plugin API version %4.%5</p>"
"<p>Using OpenCV %6.%7 and Qt %8</p>"
"<p>Built on %9</p>"
"<p>Built on %9 at %10</p>"
"<p>Copyright (C) 2014 by the Nooba team. All rights reserved.</p>"
"<p>For more info visit us on <a href=\"http://www.noobavss.tk\" >www.noobavss.tk</a></p>"
"<p><b>NoobaVSS</b> is free software: you can redistribute it and/or modify "
Expand All @@ -303,6 +303,6 @@ void MainWindow::on_actionAbout_NoobaVSS_triggered()
.arg(API_MAJOR_VERSION).arg(API_MINOR_VERSION)
.arg(CV_MAJOR_VERSION).arg(CV_MINOR_VERSION)
.arg(QT_VERSION_STR)
.arg(QDateTime::currentDateTime().toString())
.arg(__DATE__).arg(__TIME__)
);
}

0 comments on commit df89546

Please sign in to comment.