diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-05-13 07:07:57 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-05-13 07:07:57 +0000 |
| commit | 56f272b11d13bbc5d829283ccf2813d3a7e41dbc (patch) | |
| tree | dbd826fc0df0e9b087f5c0d1889e3f9eaca5181f /pokemodr/PokeModr.cpp | |
| parent | 654b25d1b4e73e840e5fe2ab63d844c2157f3379 (diff) | |
| download | sigen-56f272b11d13bbc5d829283ccf2813d3a7e41dbc.tar.gz sigen-56f272b11d13bbc5d829283ccf2813d3a7e41dbc.tar.xz sigen-56f272b11d13bbc5d829283ccf2813d3a7e41dbc.zip | |
[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
Diffstat (limited to 'pokemodr/PokeModr.cpp')
| -rw-r--r-- | pokemodr/PokeModr.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
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 <QTextCodec> // KDE includes -#include <kaboutdata.h> -#include <kapplication.h> -#include <kcmdlineargs.h> -#include <kconfig.h> -#include <kconfiggroup.h> +#include <KAboutData> +#include <KApplication> +#include <KCmdLineArgs> +#include <KConfig> +#include <KConfigGroup> 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; } |
