964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
|
refresh();
}
//------------------------------------------------------------------------------
void MainWindow::on_actionAbout_triggered()
{
QMessageBox::about(this, tr("About..."), tr(
"Fuel, a GUI frontend to Fossil SCM\n"
"by Kostas Karanikolas\n"
"Released under the GNU GPL\n\n"
"Icon-set by Deleket - Jojo Mendoza\n"
"Available under the CC Attribution-Noncommercial-No Derivate 3.0 License"));
}
//------------------------------------------------------------------------------
|
|
>
|
|
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
|
refresh();
}
//------------------------------------------------------------------------------
void MainWindow::on_actionAbout_triggered()
{
QMessageBox::about(this, "About... Fuel ",
QCoreApplication::applicationName() + " "+ QCoreApplication::applicationVersion() + " " +
tr("a GUI frontend to Fossil SCM\n"
"by Kostas Karanikolas\n"
"Released under the GNU GPL\n\n"
"Icon-set by Deleket - Jojo Mendoza\n"
"Available under the CC Attribution-Noncommercial-No Derivate 3.0 License"));
}
//------------------------------------------------------------------------------
|