This commit is contained in:
Volker Fischer 2006-02-17 19:15:33 +00:00
parent ae4fe51982
commit 6d226d0a24

View file

@ -109,10 +109,14 @@ int main ( int argc, char** argv )
pApp = &app; /* Needed for post-event routine */ pApp = &app; /* Needed for post-event routine */
/* Show dialog */ /* Show dialog */
ServerDlg.show (); ServerDlg.show ();
} app.exec ();
}
app.exec (); else
{
// only start application without using the GUI
app.exec ();
}
} }
return 0; return 0;