Fixing licenses [PkmGCSaveEditor]

This commit is contained in:
TuxSH 2015-09-28 21:50:02 +02:00
parent f31ce01cba
commit 3173566018
7 changed files with 96 additions and 6 deletions

View File

@ -1,3 +1,21 @@
/*
* Copyright (C) TuxSH 2015
* This file is part of PkmGCSaveEditor.
*
* PkmGCSaveEditor 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.
*
* PkmGCSaveEditor 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 PkmGCSaveEditor. If not, see <http://www.gnu.org/licenses/>.
*/
#include <Core/ItemPocketEditor.h>
using namespace LibPkmGC;
using namespace Localization;

View File

@ -1,9 +1,28 @@
#ifndef _PKMGCSAVEEDITOR_ITEM_POCKET_EDITOR
#define _PKMGCSAVEEDITOR_ITEM_POCKET_EDITOR
/*
* Copyright (C) TuxSH 2015
* This file is part of PkmGCSaveEditor.
*
* PkmGCSaveEditor 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.
*
* PkmGCSaveEditor 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 PkmGCSaveEditor. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PKMGCSAVEEDITOR_ITEM_POCKET_EDITOR_H
#define _PKMGCSAVEEDITOR_ITEM_POCKET_EDITOR_H
#include <Core/ItemComboBox.h>
#include <Core/UnsignedSpinbox.h>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <Core/IDataUI.h>
#include <QPushButton>

View File

@ -16,8 +16,8 @@
* along with PkmGCSaveEditor. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PKMGCSAVEEDITOR_PLAYER_UI
#define _PKMGCSAVEEDITOR_PLAYER_UI
#ifndef _PKMGCSAVEEDITOR_PLAYER_UI_H
#define _PKMGCSAVEEDITOR_PLAYER_UI_H
#include <GCUIs/BagEditor.h>
#include <Core/TrainerInfoLayout.h>

View File

@ -1,3 +1,20 @@
/*
* Copyright (C) TuxSH 2015
* This file is part of PkmGCSaveEditor.
*
* PkmGCSaveEditor 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.
*
* PkmGCSaveEditor 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 PkmGCSaveEditor. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PKMGCSAVEEDITOR_POKEMON_DISPLAY_WIDGET_H
#define _PKMGCSAVEEDITOR_POKEMON_DISPLAY_WIDGET_H

View File

@ -1,3 +1,21 @@
/*
* Copyright (C) TuxSH 2015
* This file is part of PkmGCSaveEditor.
*
* PkmGCSaveEditor 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.
*
* PkmGCSaveEditor 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 PkmGCSaveEditor. If not, see <http://www.gnu.org/licenses/>.
*/
#include <GCUIs/PokemonUI.h>
#include <QMessageBox>

View File

@ -1,3 +1,21 @@
/*
* Copyright (C) TuxSH 2015
* This file is part of PkmGCSaveEditor.
*
* PkmGCSaveEditor 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.
*
* PkmGCSaveEditor 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 PkmGCSaveEditor. If not, see <http://www.gnu.org/licenses/>.
*/
#include <MainWindow.h>
#include <QMenuBar>
#include <QMap>

View File

@ -22,8 +22,8 @@
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
MainWindow iface;
iface.show();
MainWindow userInterface;
userInterface.show();
return app.exec();
}