Skip to content
  • Andreas Pakulat's avatar
    Using all uppercase names for enum values is a _really_ bad idea, even more so... · d75007f7
    Andreas Pakulat authored
    Using all uppercase names for enum values is a _really_ bad idea, even more so when using such general terms as FIXED.
    This caused a compile error with MSVC because wingdi.h defines a struct called
    "FIXED" as well and MSVC couldn't decide wether to use the struct or the enum
    value in certain places.
    
    Fix is to make the enum value more specific to the enum its used in, similar to
    some of the other enums in this header. I initially wanted to change all of the
    enums to mixed-case, but thats stimply too much work.
    
    svn path=/trunk/KDE/kdelibs/; revision=874194
    d75007f7