Fix icon-o-matic build with gcc 4.8 (x86_64)

Signed-off-by: Jérôme Duval <jerome.duval@gmail.com>
This commit is contained in:
Murai Takashi 2013-12-19 21:11:58 +09:00 committed by Jérôme Duval
parent e395fc4f3b
commit f1a28e35ec
1 changed files with 2 additions and 2 deletions

View File

@ -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();