Change true for TRUE

The second parameter of gtk_widget_set_realized is of type gboolean
(gint). This is to ensure compatibility on alternative compilers and
platforms.
pull/1512/head
Tony 11 years ago
parent 97fc1e10a7
commit 0d06b1dced
  1. 2
      modules/highgui/src/window_gtk.cpp

@ -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;

Loading…
Cancel
Save