1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-22 22:13:35 +02:00

Update headings and fix typo

This commit is contained in:
nordsoft 2022-08-25 07:34:23 +04:00
parent 79fc8d60fb
commit 79f0dd7d22
2 changed files with 21 additions and 6 deletions

View File

@ -1,3 +1,13 @@
/*
* updatedialog_moc.cpp, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#include "StdInc.h"
#include "updatedialog_moc.h"
#include "ui_updatedialog_moc.h"
@ -38,7 +48,7 @@ UpdateDialog::UpdateDialog(QWidget *parent, bool calledManually) :
platformParameter = "ios";
#elif defined(VCMI_ANDROID)
platformParameter = "android";
#elif define(VCMI_UNIX)
#elif defined(VCMI_UNIX)
platformParameter = "linux";
#endif

View File

@ -1,6 +1,13 @@
#ifndef UPDATEDIALOG_MOC_H
#define UPDATEDIALOG_MOC_H
/*
* updatedialog_moc.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
#include <QDialog>
class JsonNode;
@ -32,5 +39,3 @@ private:
void loadFromJson(const JsonNode & node);
};
#endif // UPDATEDIALOG_MOC_H