Fixed compile error in Linux
Include guard naming fix (names starting with underscore+capital letter are reserved in C++, so we should not use those) Codeblocks project file update
This commit is contained in:
parent
364d8067ec
commit
f740277ce5
|
@ -47,6 +47,8 @@
|
||||||
<Unit filename="gui/projectfile.cpp" />
|
<Unit filename="gui/projectfile.cpp" />
|
||||||
<Unit filename="gui/projectfile.h" />
|
<Unit filename="gui/projectfile.h" />
|
||||||
<Unit filename="gui/qrc_gui.cpp" />
|
<Unit filename="gui/qrc_gui.cpp" />
|
||||||
|
<Unit filename="gui/report.cpp" />
|
||||||
|
<Unit filename="gui/report.h" />
|
||||||
<Unit filename="gui/resultstree.cpp" />
|
<Unit filename="gui/resultstree.cpp" />
|
||||||
<Unit filename="gui/resultstree.h" />
|
<Unit filename="gui/resultstree.h" />
|
||||||
<Unit filename="gui/resultsview.cpp" />
|
<Unit filename="gui/resultsview.cpp" />
|
||||||
|
@ -58,6 +60,10 @@
|
||||||
<Unit filename="gui/threadhandler.h" />
|
<Unit filename="gui/threadhandler.h" />
|
||||||
<Unit filename="gui/threadresult.cpp" />
|
<Unit filename="gui/threadresult.cpp" />
|
||||||
<Unit filename="gui/threadresult.h" />
|
<Unit filename="gui/threadresult.h" />
|
||||||
|
<Unit filename="gui/txtreport.cpp" />
|
||||||
|
<Unit filename="gui/txtreport.h" />
|
||||||
|
<Unit filename="gui/xmlreport.cpp" />
|
||||||
|
<Unit filename="gui/xmlreport.h" />
|
||||||
<Unit filename="src/check.h" />
|
<Unit filename="src/check.h" />
|
||||||
<Unit filename="src/checkautovariables.cpp" />
|
<Unit filename="src/checkautovariables.cpp" />
|
||||||
<Unit filename="src/checkautovariables.h" />
|
<Unit filename="src/checkautovariables.h" />
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _ABOUT_DIALOG_H_
|
#ifndef ABOUT_DIALOG_H
|
||||||
#define _ABOUT_DIALOG_H_
|
#define ABOUT_DIALOG_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
@ -38,4 +38,4 @@ private:
|
||||||
QString mVersion;
|
QString mVersion;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _ABOUT_DIALOG_H_
|
#endif // ABOUT_DIALOG_H
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _FILEVIEW_DIALOG_H_
|
#ifndef FILEVIEW_DIALOG_H
|
||||||
#define _FILEVIEW_DIALOG_H_
|
#define FILEVIEW_DIALOG_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
@ -55,4 +55,4 @@ protected:
|
||||||
QString FormatTitle(const QString &filename);
|
QString FormatTitle(const QString &filename);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _FILEVIEW_DIALOG_H_
|
#endif // FILEVIEW_DIALOG_H
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _PROJECT_FILE_H_
|
#ifndef PROJECT_FILE_H
|
||||||
#define _PROJECT_FILE_H_
|
#define PROJECT_FILE_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
@ -65,4 +65,4 @@ private:
|
||||||
QStringList mDeAllocatedClasses;
|
QStringList mDeAllocatedClasses;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _PROJECT_FILE_H_
|
#endif // PROJECT_FILE_H
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _REPORT_H_
|
#ifndef REPORT_H
|
||||||
#define _REPORT_H_
|
#define REPORT_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
@ -81,4 +81,4 @@ private:
|
||||||
QFile mFile;
|
QFile mFile;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _REPORT_H_
|
#endif // REPORT_H
|
||||||
|
|
|
@ -16,15 +16,15 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _TXT_REPORT_H_
|
#ifndef TXT_REPORT_H
|
||||||
#define _TXT_REPORT_H_
|
#define TXT_REPORT_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QStringList>
|
#include <QStringList>
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QTextStream>
|
#include <QTextStream>
|
||||||
#include "Report.h"
|
#include "report.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Text file report.
|
* @brief Text file report.
|
||||||
|
@ -67,4 +67,4 @@ private:
|
||||||
QTextStream mTxtWriter;
|
QTextStream mTxtWriter;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _TXT_REPORT_H_
|
#endif // TXT_REPORT_H
|
||||||
|
|
|
@ -16,15 +16,15 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _XML_REPORT_H_
|
#ifndef XML_REPORT_H
|
||||||
#define _XML_REPORT_H_
|
#define XML_REPORT_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QStringList>
|
#include <QStringList>
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QXmlStreamWriter>
|
#include <QXmlStreamWriter>
|
||||||
#include "Report.h"
|
#include "report.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief XML file report.
|
* @brief XML file report.
|
||||||
|
@ -67,4 +67,4 @@ private:
|
||||||
QXmlStreamWriter mXmlWriter;
|
QXmlStreamWriter mXmlWriter;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _XML_REPORT_H_
|
#endif // XML_REPORT_H
|
||||||
|
|
Loading…
Reference in New Issue