diff options
author | Matthias Clasen <maclas@gmx.de> | 2003-05-27 21:21:00 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2003-05-27 21:21:00 +0000 |
commit | 83c626bbe007ad0bd1f3aebb1e291fb4cb097c4a (patch) | |
tree | ac47d80a1ece39b3f7eda441c16a9d7c6dad0e61 /gtk/gtkdnd.c | |
parent | fd99f43ac5468dffd55659860a8f14c630ce1408 (diff) | |
download | gtk+-83c626bbe007ad0bd1f3aebb1e291fb4cb097c4a.tar.gz |
Remove dubious bitfields of unspecified signedness. (#112919, Morten
2003-05-27 Matthias Clasen <maclas@gmx.de>
* io-wbmp.c: Remove dubious bitfields of
unspecified signedness. (#112919, Morten Welinder)gdk-p
* gdk-pixdata.c (gdk_pixdata_to_csource): Replace all occurances
of g_string_new ("") by g_string_new (NULL). (#106975, Morten Welinder)
* gtk/gtkwindow-decorate.c:
* gtk/gtktreeprivate.h:
* gtk/gtkdnd.c:
* gdk/win32/gdkwindow-win32.h:
* gdk/linux-fb/gdkprivate-fb.h:
* gdk/linux-fb/gdkkeyboard-fb.c: Remove dubious bitfields of
unspecified signedness. (#112919, Morten Welinder)
* gtk/queryimmodules.c (escape_string):
* gtk/gtktextbtree.c (_gtk_text_btree_get_text):
* gtk/gtksettings.c (_gtk_settings_parse_convert):
* gtk/gtkrc.c (gtk_rc_parse_assignment):
* gtk/gtkinputdialog.c (gtk_input_dialog_set_key):
* gdk/x11/gdkdisplay-x11.c (escape_for_xmessage): Replace all
occurances of g_string_new ("") by g_string_new (NULL). (#106975,
Morten Welinder)
Diffstat (limited to 'gtk/gtkdnd.c')
-rw-r--r-- | gtk/gtkdnd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkdnd.c b/gtk/gtkdnd.c index ca7b34cc7b..9a074784ba 100644 --- a/gtk/gtkdnd.c +++ b/gtk/gtkdnd.c @@ -114,9 +114,9 @@ struct _GtkDragDestSite GdkDragAction actions; GdkWindow *proxy_window; GdkDragProtocol proxy_protocol; - gboolean do_proxy : 1; - gboolean proxy_coords : 1; - gboolean have_drag : 1; + guint do_proxy : 1; + guint proxy_coords : 1; + guint have_drag : 1; }; struct _GtkDragDestInfo @@ -125,9 +125,9 @@ struct _GtkDragDestInfo GdkDragContext *context; /* Drag context */ GtkDragSourceInfo *proxy_source; /* Set if this is a proxy drag */ GtkSelectionData *proxy_data; /* Set while retrieving proxied data */ - gboolean dropped : 1; /* Set after we receive a drop */ + guint dropped : 1; /* Set after we receive a drop */ guint32 proxy_drop_time; /* Timestamp for proxied drop */ - gboolean proxy_drop_wait : 1; /* Set if we are waiting for a + guint proxy_drop_wait : 1; /* Set if we are waiting for a * status reply before sending * a proxied drop on. */ |