diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-12 00:18:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-12 00:51:22 +0300 |
commit | d5a00a320043f5782ebc489285c89943b667e094 (patch) | |
tree | eb64f3b1f81f7ba2a3c7ff9e02ad329ef21abb83 /src/units.h | |
parent | 742b2a22bdcb69e6f615a284065ba2696e7bc261 (diff) | |
download | plus-d5a00a320043f5782ebc489285c89943b667e094.tar.gz plus-d5a00a320043f5782ebc489285c89943b667e094.tar.bz2 plus-d5a00a320043f5782ebc489285c89943b667e094.tar.xz plus-d5a00a320043f5782ebc489285c89943b667e094.zip |
Add skipError parameter to loadXml functions.
This allow not show errors for some not main xml files.
Diffstat (limited to 'src/units.h')
-rw-r--r-- | src/units.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/units.h b/src/units.h index d0c71cb2d..eb8d38587 100644 --- a/src/units.h +++ b/src/units.h @@ -23,6 +23,8 @@ #ifndef UNITS_H #define UNITS_H +#include "enums/simpletypes/skiperror.h" + #include <string> #include "localconsts.h" @@ -37,7 +39,8 @@ class Units final */ static void loadUnits(); - static void loadXmlFile(const std::string &fileName); + static void loadXmlFile(const std::string &fileName, + const SkipError skipError); /** * Formats the given number in the correct currency format. |