mirror of https://github.com/GNOME/gimp.git
fixed signedness warnings.
2005-07-26 Sven Neumann <sven@gimp.org> * tools/gimp-remote.c: fixed signedness warnings.
This commit is contained in:
parent
4c28829dc5
commit
18943eba39
|
@ -1,3 +1,7 @@
|
|||
2005-07-26 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* tools/gimp-remote.c: fixed signedness warnings.
|
||||
|
||||
2005-07-25 Maurits Rijk <m.rijk@chello.nl>
|
||||
|
||||
* plug-ins/imagemap/imap_csim.y: make buffer large enough to hold
|
||||
|
|
|
@ -160,7 +160,8 @@ gimp_remote_find_window (GdkDisplay *display,
|
|||
&data) == Success &&
|
||||
ret_type)
|
||||
{
|
||||
if (nitems > 11 && strcmp (data, "gimp-toolbox") == 0)
|
||||
if (nitems > 11 &&
|
||||
strcmp ((const gchar *) data, "gimp-toolbox") == 0)
|
||||
{
|
||||
XFree (data);
|
||||
result = gdk_window_foreign_new_for_display (display, window);
|
||||
|
@ -185,7 +186,7 @@ source_selection_get (GtkWidget *widget,
|
|||
{
|
||||
gtk_selection_data_set (selection_data,
|
||||
selection_data->target,
|
||||
8, uri, strlen (uri));
|
||||
8, (const guchar *) uri, strlen (uri));
|
||||
gtk_main_quit ();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue