summaryrefslogtreecommitdiff
path: root/src/modules/json
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-11-19 12:51:53 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-11-19 12:51:53 +0000
commit32dedc767dec565c576b78b786e7a95d76ac806e (patch)
tree0f2eb209b3716569a8e3c3ef146a91f402ebbb4d /src/modules/json
parentadf7367cfdb57b32aadeb74af45dce9a6a3c02a5 (diff)
- added another helper, ExtraIcon_Clear, to remove an icon from slot;
- added ability to pass IcoLib handles instead of icons' names git-svn-id: http://svn.miranda-ng.org/main/trunk@2371 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/json')
-rw-r--r--src/modules/json/JSONNode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/json/JSONNode.h b/src/modules/json/JSONNode.h
index 3552f9f73c..0c4f19d08d 100644
--- a/src/modules/json/JSONNode.h
+++ b/src/modules/json/JSONNode.h
@@ -61,7 +61,7 @@
#define DECLARE_FOR_ALL_TYPES_CONST(foo)\
foo(char) const; foo(unsigned char) const;\
foo(short) const; foo(unsigned short) const;\
- foo(int) const; foo(unsigned int) const;\
+ foo(int)const; foo(unsigned int) const;\
foo(long) const; foo(unsigned long) const;\
foo(float) const; foo(double) const;\
foo(bool) const;\
@@ -72,7 +72,7 @@
#define IMPLEMENT_FOR_ALL_NUMBERS(foo)\
foo(char) foo(unsigned char)\
foo(short) foo(unsigned short)\
- foo(int) foo(unsigned int)\
+ foo(int)foo(unsigned int)\
foo(long) foo(unsigned long)\
foo(float) foo(double)