Improve the wording of the message for G_UNAVAILABLE
authorMatthias Clasen <mclasen@redhat.com>
Mon, 27 Feb 2012 11:48:01 +0000 (06:48 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 27 Feb 2012 11:54:16 +0000 (06:54 -0500)
The version number we have here is the one the function appeared
in, not the max-allowed version. Therefore 'unavailable before
VERSION' makes more sense than 'unavailable for VERSION'.

glib/gmacros.h

index 0fbe71a..08f4035 100644 (file)
 #endif
 
 #if    __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
-#define G_UNAVAILABLE(maj,min) __attribute__((deprecated("Not available for " #maj "." #min)))
+#define G_UNAVAILABLE(maj,min) __attribute__((deprecated("Not available before " #maj "." #min)))
 #elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320)
-#define G_UNAVAILABLE(maj,min) __declspec(deprecated("is not available for " #maj "." #min))
+#define G_UNAVAILABLE(maj,min) __declspec(deprecated("is not available before " #maj "." #min))
 #else
 #define G_UNAVAILABLE(maj,min)
 #endif