Improve warnings a bit in a fashion similar to the part of

Thu Feb  1 20:32:49 2001  Owen Taylor  <otaylor@redhat.com>

	* gdk/gdk.c: Improve warnings a bit in a fashion similar
	to the part of gtk-enf-990513-0.patch (Eric Fisher) that hasn't
	been superceded.
This commit is contained in:
Owen Taylor
2001-02-02 01:36:22 +00:00
committed by Owen Taylor
parent 638adacbfc
commit e1068cb50d
8 changed files with 48 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
Thu Feb 1 20:32:49 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c: Improve warnings a bit in a fashion similar
to the part of gtk-enf-990513-0.patch (Eric Fisher) that hasn't
been superceded.
Thu Feb 1 18:25:46 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not

View File

@@ -1,3 +1,9 @@
Thu Feb 1 20:32:49 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c: Improve warnings a bit in a fashion similar
to the part of gtk-enf-990513-0.patch (Eric Fisher) that hasn't
been superceded.
Thu Feb 1 18:25:46 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not

View File

@@ -1,3 +1,9 @@
Thu Feb 1 20:32:49 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c: Improve warnings a bit in a fashion similar
to the part of gtk-enf-990513-0.patch (Eric Fisher) that hasn't
been superceded.
Thu Feb 1 18:25:46 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not

View File

@@ -1,3 +1,9 @@
Thu Feb 1 20:32:49 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c: Improve warnings a bit in a fashion similar
to the part of gtk-enf-990513-0.patch (Eric Fisher) that hasn't
been superceded.
Thu Feb 1 18:25:46 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not

View File

@@ -1,3 +1,9 @@
Thu Feb 1 20:32:49 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c: Improve warnings a bit in a fashion similar
to the part of gtk-enf-990513-0.patch (Eric Fisher) that hasn't
been superceded.
Thu Feb 1 18:25:46 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not

View File

@@ -1,3 +1,9 @@
Thu Feb 1 20:32:49 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c: Improve warnings a bit in a fashion similar
to the part of gtk-enf-990513-0.patch (Eric Fisher) that hasn't
been superceded.
Thu Feb 1 18:25:46 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not

View File

@@ -1,3 +1,9 @@
Thu Feb 1 20:32:49 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c: Improve warnings a bit in a fashion similar
to the part of gtk-enf-990513-0.patch (Eric Fisher) that hasn't
been superceded.
Thu Feb 1 18:25:46 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not

View File

@@ -158,7 +158,7 @@ get_option (char ***argv,
}
else
{
g_warning ("Missing parameter for option %s", orig);
g_warning ("Option '%s' requires an argument.", orig);
}
}
@@ -358,6 +358,9 @@ gdk_init_check (int *argc,
gdk_im_set_best_style (GDK_IM_PREEDIT_POSITION);
else if (strcmp ("callbacks", option) == 0)
gdk_im_set_best_style (GDK_IM_PREEDIT_CALLBACKS);
else
g_warning ("Argument '%s' for --xim-preedit not understood", option);
}
}
else if ((strcmp ("--xim-status", (*argv)[i]) == 0) ||
@@ -375,6 +378,8 @@ gdk_init_check (int *argc,
gdk_im_set_best_style (GDK_IM_STATUS_AREA);
else if (strcmp ("callbacks", option) == 0)
gdk_im_set_best_style (GDK_IM_STATUS_CALLBACKS);
else
g_warning ("Argumetn '%s' for --xim-status not understood", option);
}
}
#endif