Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added decoration for about box on non-MacOS
git-svn-id: http://svn.osgeo.org/qgis/trunk@10371 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
macho committed Mar 21, 2009
1 parent 1f86639 commit b2ab664
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/qgsabout.cpp
Expand Up @@ -31,9 +31,13 @@
#include "qgslogger.h"
std::map<QString, QPixmap> mugs;
*/

#ifdef Q_OS_MACX
QgsAbout::QgsAbout()
: QDialog( NULL, Qt::WindowSystemMenuHint ) // Modeless dialog with close button only
#else
QgsAbout::QgsAbout()
: QDialog( NULL ) // Normal dialog in non Mac-OS
#endif
{
setupUi( this );
init();
Expand Down

0 comments on commit b2ab664

Please sign in to comment.