Ticket #10272: 0002-Fix-icon-o-matic-build-with-gcc-4.8-x86_64.patch

File 0002-Fix-icon-o-matic-build-with-gcc-4.8-x86_64.patch, 999 bytes (added by mt, 10 years ago)
  • src/apps/icon-o-matic/generic/property/Property.h

    From 4a6668320a72b14cb9151198e8e5f1056821589e Mon Sep 17 00:00:00 2001
    From: Murai Takashi <tmurai01@gmail.com>
    Date: Thu, 19 Dec 2013 21:11:58 +0900
    Subject: [PATCH 2/2] Fix icon-o-matic build with gcc 4.8 (x86_64)
    
    ---
     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 01a701b..e25d843 100644
    a b class IntProperty : public Property {  
    5959 public:
    6060                                IntProperty(uint32 identifier,
    6161                                            int32 value = 0,
    62                                             int32 min = LONG_MIN,
    63                                             int32 max = LONG_MAX);
     62                                            int32 min = INT32_MIN,
     63                                            int32 max = INT32_MAX);
    6464                                IntProperty(const IntProperty& other);
    6565                                IntProperty(BMessage* archive);
    6666    virtual                     ~IntProperty();