diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-12-28 04:45:49 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-12-28 05:36:17 +0100 |
commit | 5402acb3c6cf9b63c9df69ee463cae02259dfdef (patch) | |
tree | 76bbfd58704b3634fe6a707c6ec13a5dccb267ea /logic/Json.h | |
parent | e8063d193d56acc10c5a533cffd95c9271b24e65 (diff) | |
download | MultiMC-5402acb3c6cf9b63c9df69ee463cae02259dfdef.tar MultiMC-5402acb3c6cf9b63c9df69ee463cae02259dfdef.tar.gz MultiMC-5402acb3c6cf9b63c9df69ee463cae02259dfdef.tar.lz MultiMC-5402acb3c6cf9b63c9df69ee463cae02259dfdef.tar.xz MultiMC-5402acb3c6cf9b63c9df69ee463cae02259dfdef.zip |
GH-1360 add basic changelog based on github API, fix update dialog buttons
Diffstat (limited to 'logic/Json.h')
-rw-r--r-- | logic/Json.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/logic/Json.h b/logic/Json.h index f03f777a..5d3186ce 100644 --- a/logic/Json.h +++ b/logic/Json.h @@ -35,13 +35,13 @@ QByteArray toText(const QJsonObject &obj); QByteArray toText(const QJsonArray &array); /// @throw JsonException -QJsonDocument requireDocument(const QByteArray &data, const QString &what = "Document"); +MULTIMC_LOGIC_EXPORT QJsonDocument requireDocument(const QByteArray &data, const QString &what = "Document"); /// @throw JsonException -QJsonDocument requireDocument(const QString &filename, const QString &what = "Document"); +MULTIMC_LOGIC_EXPORT QJsonDocument requireDocument(const QString &filename, const QString &what = "Document"); /// @throw JsonException -QJsonObject requireObject(const QJsonDocument &doc, const QString &what = "Document"); +MULTIMC_LOGIC_EXPORT QJsonObject requireObject(const QJsonDocument &doc, const QString &what = "Document"); /// @throw JsonException -QJsonArray requireArray(const QJsonDocument &doc, const QString &what = "Document"); +MULTIMC_LOGIC_EXPORT QJsonArray requireArray(const QJsonDocument &doc, const QString &what = "Document"); /////////////////// WRITING //////////////////// |