summaryrefslogtreecommitdiff
path: root/gdk
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2001-06-06 14:35:58 +0000
committerOwen Taylor <otaylor@src.gnome.org>2001-06-06 14:35:58 +0000
commit2304a86ef9fee3ae570870eb4c94bb68a2b15797 (patch)
tree26db2d0f2b9a130b85d5312ed9f9e317d79482ee /gdk
parent7e2541bd594c71ab3151bf986a4cf4bd88bef39b (diff)
downloadgtk+-2304a86ef9fee3ae570870eb4c94bb68a2b15797.tar.gz
Include gtkwidget.h (#55798, Karl Nelson)
Wed Jun 6 10:34:42 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtktooltips.h: Include gtkwidget.h (#55798, Karl Nelson) * gdk/x11/gdkwindow-x11.c (utf8_is_latin1): 0xff is a valid latin-1 character. (Marc Lehmann, #35467) * gdk/x11/gdkwindow-x11.c: Fix minor typo in comment. (Marc Lehmann, #35467)
Diffstat (limited to 'gdk')
-rw-r--r--gdk/x11/gdkwindow-x11.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdk/x11/gdkwindow-x11.c b/gdk/x11/gdkwindow-x11.c
index 9cb966b065..dfb2ea0c29 100644
--- a/gdk/x11/gdkwindow-x11.c
+++ b/gdk/x11/gdkwindow-x11.c
@@ -1175,7 +1175,7 @@ gdk_window_set_hints (GdkWindow *window,
size_hints.max_height = max_height;
}
- /* FIXME: Would it be better to delete this property of
+ /* FIXME: Would it be better to delete this property if
* flags == 0? It would save space on the server
*/
XSetWMNormalHints (GDK_WINDOW_XDISPLAY (window),
@@ -1383,7 +1383,7 @@ gdk_window_set_geometry_hints (GdkWindow *window,
size_hints.win_gravity = geometry->win_gravity;
}
- /* FIXME: Would it be better to delete this property of
+ /* FIXME: Would it be better to delete this property if
* geom_mask == 0? It would save space on the server
*/
XSetWMNormalHints (GDK_WINDOW_XDISPLAY (window),
@@ -1459,7 +1459,7 @@ utf8_is_latin1 (const gchar *str)
{
gunichar ch = g_utf8_get_char (p);
- if (ch >= 0xff)
+ if (ch > 0xff)
return FALSE;
p = g_utf8_next_char (p);