mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-01-21 13:10:04 -05:00
Merge branch 'master' into travis
This commit is contained in:
commit
df64fb4b1e
@ -44,9 +44,18 @@ int main(int argc, char *argv[])
|
||||
"}" );
|
||||
#endif
|
||||
|
||||
Fractorium w;
|
||||
w.show();
|
||||
a.installEventFilter(&w);
|
||||
return a.exec();
|
||||
int rv = -1;
|
||||
|
||||
try
|
||||
{
|
||||
Fractorium w;
|
||||
w.show();
|
||||
a.installEventFilter(&w);
|
||||
rv = a.exec();
|
||||
} catch (const char *e) {
|
||||
QMessageBox::critical(0, "Fatal Error", e);
|
||||
}
|
||||
|
||||
return rv;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user