From 56f272b11d13bbc5d829283ccf2813d3a7e41dbc Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 13 May 2008 07:07:57 +0000 Subject: [ADD] Sound UI code [FIX] Using class-named includes for KDE as well now [FIX] Signals fixed for UI classes [FIX] FileDialog now created on heap rather than the stack git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@128 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokemodr/PokeModr.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'pokemodr/PokeModr.cpp') diff --git a/pokemodr/PokeModr.cpp b/pokemodr/PokeModr.cpp index 35df3157..5d17be27 100644 --- a/pokemodr/PokeModr.cpp +++ b/pokemodr/PokeModr.cpp @@ -26,11 +26,11 @@ #include // KDE includes -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include int main(int argc, char* argv[]) { @@ -49,6 +49,6 @@ int main(int argc, char* argv[]) PokeModrUI* mainWindow = new PokeModrUI(cfg.group("pokemodr"), cfg.group("pokemodr-recent")); mainWindow->show(); - app->exec(); + app->exec() == QDialog::Accepted; return 0; } -- cgit