From 6d666a57bee0fb296f148cc416b451f3751fd138 Mon Sep 17 00:00:00 2001 From: "Juergen E. Fischer" Date: Mon, 26 Aug 2013 18:18:39 +0200 Subject: [PATCH] show word size (32/64 bit) in about box title --- src/app/qgsabout.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/qgsabout.cpp b/src/app/qgsabout.cpp index 1ec947d75c31..6c049f5223dd 100644 --- a/src/app/qgsabout.cpp +++ b/src/app/qgsabout.cpp @@ -49,6 +49,8 @@ void QgsAbout::init() { setPluginInfo(); + setWindowTitle( QString( "%1 - %2 Bit" ).arg( windowTitle() ).arg( QSysInfo::WordSize ) ); + // set the 60x60 icon pixmap QPixmap icon( QgsApplication::iconsPath() + "qgis-icon-60x60.png" ); qgisIcon->setPixmap( icon );