~ubuntu-branches/ubuntu/vivid/openmsx-debugger/vivid-proposed

« back to all changes in this revision

Viewing changes to src/main.cpp

  • Committer: Package Import Robot
  • Author(s): Bas Wijnen
  • Date: 2014-10-06 21:24:04 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20141006212404-hhvl91fgs00825f4
Tags: 0.0.0.svn20141006-1
* New snapshot including arm64 support.  (Closes: #759437)
* Adapt build system for qt5.
* Upgrade standards version to 3.9.6.  No changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
{
10
10
        QApplication app(argc, argv);
11
11
// Don't set the icon on OS X, because it will replace the high-res version
12
 
// with a lower resolution one, even though openMSX-debugger-logo-128.png is 128x128.
 
12
// with a lower resolution one, even though openMSX-debugger-logo-256.png is 256x256.
13
13
#ifndef __APPLE__
14
 
        app.setWindowIcon(QIcon(":icons/openMSX-debugger-logo-128.png"));
 
14
        app.setWindowIcon(QIcon(":icons/openMSX-debugger-logo-256.png"));
15
15
#endif
16
16
        // restore main settings
17
17
        app.setFont(Settings::get().font(Settings::APP_FONT));