~ubuntu-branches/ubuntu/lucid/skrooge/lucid

« back to all changes in this revision

Viewing changes to skrooge/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-05-02 06:47:15 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090502064715-b7l4eciitw3asos3
Tags: 0.2.7-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
 
71
71
        about.addAuthor( ki18n("Stephane MANKOWSKI"), ki18n("Architect & Developer"), "miraks@users.sourceforge.net" );
72
72
        about.addAuthor( ki18n("Guillaume DE BURE"), ki18n("Developer"), "willy9@users.sourceforge.net" );
73
 
        about.addAuthor( ki18n("Thierry DAUCOURT"), ki18n("Graphist"), "thdox@users.sourceforge.net" );
 
73
        about.addCredit( ki18n("Thierry DAUCOURT"), ki18n("Graphist & Tester"), "thdox@users.sourceforge.net" );
 
74
        about.addCredit( ki18n("Georges GRAVA"), ki18n("Translator"), "bonfire_gga@users.sourceforge.net" );
74
75
        KCmdLineArgs::init(argc, argv, &about);
75
76
 
76
77
        KCmdLineOptions options;
101
102
                widget->show();
102
103
        }
103
104
 
104
 
        int rc=0;
105
 
        if (!getenv("SKGTESTMODE")) {
106
 
                rc=app.exec();
107
 
                widget=NULL;
108
 
        }
109
 
 
110
 
        if (widget) {
111
 
                delete widget;
112
 
                widget=NULL;
113
 
        }
 
105
        int rc=app.exec();
114
106
        SKGTraces::exit(rc);
115
107
        return 0;
116
108
}