# HG changeset patch # User Matti Hamalainen # Date 1491726596 -10800 # Node ID 73fd86778014c1d956f3f5d653a28d1d7f1505da # Parent fc633e7c83a99c4f001cd36bde393ad63587c1a0 Version number display etc. changes. diff -r fc633e7c83a9 -r 73fd86778014 main.cpp --- a/main.cpp Sun Apr 09 11:12:12 2017 +0300 +++ b/main.cpp Sun Apr 09 11:29:56 2017 +0300 @@ -218,9 +218,8 @@ // Setup other UI things setWindowIcon(QIcon(QPixmap(":/img/icon-64.png"))); - setWindowTitle(tr("%1%2%3"). + setWindowTitle(tr("%1 versio %3"). arg(tr(APP_NAME)). - arg(tr(" versio ")). arg(tr(APP_VERSION))); QPixmap logoImage(":/img/logo.png"); @@ -433,7 +432,7 @@ this, tr("Tietoja ohjelmasta"), tr( - "

%1

" + "

%1 v%2

" "

" "Ohjelmoinut ja kehittänyt Matti Hämäläinen <ccr@tnsp.org>
" "(C) Copyright 2017 Tecnic Software productions (TNSP)

" @@ -447,7 +446,8 @@ "nähdäksesi täydelliset lisenssiehdot." "

" ). - arg(tr(APP_NAME)) + arg(tr(APP_NAME)). + arg(tr(APP_VERSION)) ); }