Fix problem with using result of g_get_charset() backwards - pointed out

Sun Nov 12 14:10:09 2000  Owen Taylor  <otaylor@redhat.com>

	* gdk/x11/gdkselection-x11.c (gdk_utf8_to_compound_text): Fix
	problem with using result of g_get_charset() backwards -
	pointed out by Mikael Hermansson <mikeh@bahnhof.se>.

	* gtk/gtkwindow.c (gtk_window_compute_hints): Support
	negative min_width/height and max_width/height to
	mean "requisition"; this allows setting a window
	to be user-resizable in only one direction easily.

	* gtk/testgtk.c (create_main_window): Remove hard-coded
	usize - set a default size in the vertical direction.
This commit is contained in:
Owen Taylor
2000-11-12 19:16:11 +00:00
committed by Owen Taylor
parent 114d0b6b25
commit 2cb2d33b20
11 changed files with 140 additions and 12 deletions

View File

@ -415,7 +415,7 @@ gdk_text_property_to_utf8_list (GdkAtom encoding,
gint local_count;
gint i;
gchar *charset = NULL;
gboolean need_conversion= g_get_charset (&charset);
gboolean need_conversion = !g_get_charset (&charset);
gint count = 0;
GError *error = NULL;
@ -605,7 +605,7 @@ gdk_utf8_to_compound_text (const gchar *str,
g_return_val_if_fail (str != NULL, FALSE);
need_conversion = g_get_charset (&charset);
need_conversion = !g_get_charset (&charset);
tmp_str = sanitize_utf8 (str);