Change true for TRUE
authorTony <exocoder@gmail.com>
Mon, 30 Sep 2013 20:04:43 +0000 (21:04 +0100)
committerTony <exocoder@gmail.com>
Mon, 30 Sep 2013 20:04:43 +0000 (21:04 +0100)
The second parameter of gtk_widget_set_realized is of type gboolean
(gint). This is to ensure compatibility on alternative compilers and
platforms.

modules/highgui/src/window_gtk.cpp

index c467155..79ae638 100644 (file)
@@ -154,7 +154,7 @@ cvImageWidget_realize (GtkWidget *widget)
   g_return_if_fail (widget != NULL);
   g_return_if_fail (CV_IS_IMAGE_WIDGET (widget));
 
-  gtk_widget_set_realized(widget, true);
+  gtk_widget_set_realized(widget, TRUE);
 
   attributes.x = widget->allocation.x;
   attributes.y = widget->allocation.y;