Re: gtk_check_version() confusion

2015-08-09 Thread Victor Aurélio Santos
Why do not you test ? I'm running 3.16.5, with following code: const char *lower; const char *equal; const char *higher; lower = gtk_check_version(3, 16, 4); equal = gtk_check_version(3, 16, 5); higher = gtk_check_version(3, 16, 6); printf("The lower is: %s\n", lower)

gtk_check_version() confusion

2015-08-09 Thread Igor Korot
Hi, ALL, Documentation says: [quote] Returns NULL if the GTK+ library is compatible with the given version, or a string describing the version mismatch. The returned string is owned by GTK+ and should not be modified or freed. [/quote] So NULL is returned if my GTK+ version is >= than the suppl