~ubuntu-branches/ubuntu/utopic/openmsx-debugger/utopic

« back to all changes in this revision

Viewing changes to src/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Joost Yervante Damad
  • Date: 2009-12-06 07:40:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20091206074002-kssfkg1d6xbp6w9e
Tags: 0.0.0.svn20091206-1
New svn snapshot (Closes: #559612)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// $Id: main.cpp 6238 2007-04-01 20:56:33Z manuelbi $
 
1
// $Id: main.cpp 9347 2009-03-06 22:47:13Z m9710797 $
2
2
 
3
3
#include "DebuggerForm.h"
4
4
#include "Settings.h"
14
14
        app.setWindowIcon(QIcon::QIcon(":icons/openMSX-debugger-logo-128.png"));
15
15
#endif
16
16
        // restore main settings
17
 
        app.setFont( Settings::get().font( Settings::APP_FONT ) );
18
 
        
 
17
        app.setFont(Settings::get().font(Settings::APP_FONT));
 
18
 
19
19
        DebuggerForm debugger;
20
20
        debugger.show();
21
21