From f1a28e35ec5149eedaa3c4b38922091d5f578d52 Mon Sep 17 00:00:00 2001 From: Murai Takashi Date: Thu, 19 Dec 2013 21:11:58 +0900 Subject: [PATCH] Fix icon-o-matic build with gcc 4.8 (x86_64) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Duval --- src/apps/icon-o-matic/generic/property/Property.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/icon-o-matic/generic/property/Property.h b/src/apps/icon-o-matic/generic/property/Property.h index 01a701b899..e25d843413 100644 --- a/src/apps/icon-o-matic/generic/property/Property.h +++ b/src/apps/icon-o-matic/generic/property/Property.h @@ -59,8 +59,8 @@ class IntProperty : public Property { public: IntProperty(uint32 identifier, int32 value = 0, - int32 min = LONG_MIN, - int32 max = LONG_MAX); + int32 min = INT32_MIN, + int32 max = INT32_MAX); IntProperty(const IntProperty& other); IntProperty(BMessage* archive); virtual ~IntProperty();