GNOME Bugzilla – Bug 697196
gtk_notebook_set_tab_reorderable boolean handling
Last modified: 2013-04-25 00:01:27 UTC
If the reorderable argument of gtk_notebook_set_tab_reorderable is, say, (gboolean)4 as it can happen with a flag test then the code will treat it mostly like FALSE. The code should normalize with reorderable = !!reorderable; and avoid the == TRUE test.