forked from AuroraMiddleware/gtk
Fix some C99isms.
2004-11-11 Matthias Clasen <mclasen@redhat.com> * gtk/gtkuimanager.c (update_node): Fix some C99isms.
This commit is contained in:
parent
75eb3f9d2f
commit
d1a02aaa34
@ -3,6 +3,7 @@
|
||||
* gtk/gtkuimanager.c (update_node): Remove two more places
|
||||
where we were unconditionally setting "visible", causing
|
||||
unnecessary notifications.
|
||||
(update_node): Fix some C99isms.
|
||||
|
||||
* gtk/gtkclipboard.c (gtk_clipboard_get_for_display):
|
||||
(gtk_clipboard_get): Clarify the docs. (#156638, Torsten
|
||||
|
@ -3,6 +3,7 @@
|
||||
* gtk/gtkuimanager.c (update_node): Remove two more places
|
||||
where we were unconditionally setting "visible", causing
|
||||
unnecessary notifications.
|
||||
(update_node): Fix some C99isms.
|
||||
|
||||
* gtk/gtkclipboard.c (gtk_clipboard_get_for_display):
|
||||
(gtk_clipboard_get): Clarify the docs. (#156638, Torsten
|
||||
|
@ -3,6 +3,7 @@
|
||||
* gtk/gtkuimanager.c (update_node): Remove two more places
|
||||
where we were unconditionally setting "visible", causing
|
||||
unnecessary notifications.
|
||||
(update_node): Fix some C99isms.
|
||||
|
||||
* gtk/gtkclipboard.c (gtk_clipboard_get_for_display):
|
||||
(gtk_clipboard_get): Clarify the docs. (#156638, Torsten
|
||||
|
@ -3,6 +3,7 @@
|
||||
* gtk/gtkuimanager.c (update_node): Remove two more places
|
||||
where we were unconditionally setting "visible", causing
|
||||
unnecessary notifications.
|
||||
(update_node): Fix some C99isms.
|
||||
|
||||
* gtk/gtkclipboard.c (gtk_clipboard_get_for_display):
|
||||
(gtk_clipboard_get): Clarify the docs. (#156638, Torsten
|
||||
|
@ -2036,6 +2036,9 @@ update_node (GtkUIManager *self,
|
||||
GNode *child;
|
||||
GtkAction *action;
|
||||
gchar *tooltip;
|
||||
const gchar *action_name;
|
||||
NodeUIReference *ref;
|
||||
|
||||
#ifdef DEBUG_UI_MANAGER
|
||||
GList *tmp;
|
||||
#endif
|
||||
@ -2063,9 +2066,6 @@ update_node (GtkUIManager *self,
|
||||
g_print (")\n");
|
||||
#endif
|
||||
|
||||
const gchar *action_name;
|
||||
NodeUIReference *ref;
|
||||
|
||||
if (info->uifiles == NULL) {
|
||||
/* We may need to remove this node.
|
||||
* This must be done in post order
|
||||
|
Loading…
Reference in New Issue
Block a user