diff options
Diffstat (limited to 'pokemodr/PokeModr.cpp')
| -rw-r--r-- | pokemodr/PokeModr.cpp | 41 |
1 files changed, 18 insertions, 23 deletions
diff --git a/pokemodr/PokeModr.cpp b/pokemodr/PokeModr.cpp index 80b50e66..7a50630c 100644 --- a/pokemodr/PokeModr.cpp +++ b/pokemodr/PokeModr.cpp @@ -1,24 +1,19 @@ -///////////////////////////////////////////////////////////////////////////// -// Name: pokemodr/PokeModr.cpp -// Purpose: Main function for PokéModr -// Author: Ben Boeckel -// Modified by: Ben Boeckel -// Created: Tue Jan 22 14:51:38 2008 -// Copyright: ©2007-2008 Ben Boeckel and Nerdy Productions -// Licence: -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License along -// with this program. If not, see <http://www.gnu.org/licenses/>. -///////////////////////////////////////////////////////////////////////////// +/* + * Copyright 2008 Ben Boeckel <MathStuf@gmail.com> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see <http://www.gnu.org/licenses/>. + */ #include <kaboutdata.h> #include <kapplication.h> @@ -59,9 +54,9 @@ int main(int argc, char* argv[]) mainWindow.show(); app.exec(); } - catch (Exception& e) + catch (Exception& exception) { - BugCatcher::report(e); + BugCatcher::report(exception); BugCatcher::report(Exception("PokeModr", "Uncaught exception")); ret = 1; } |
