Remove "text2pcap-scanner.obj" and "tools\lemon\lemon.obj" when a "nmake
[obnox/wireshark/wip.git] / gtk / gtkclist.c
index 366547f5dbbfc081b3eea372ad5d76afe4478366..423d1b85d8b6e4e904b981338802d4b5b3d23cf1 100644 (file)
@@ -25,9 +25,9 @@
  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
  */
 
+#include "config.h"
 #include <stdlib.h>
 #include <string.h>
-#include "config.h"
 #include <gtk/gtkmain.h>
 #include "gtkclist.h"
 #include <gtk/gtkbindings.h>
@@ -2393,7 +2393,7 @@ gtk_clist_set_shift (GtkCList *clist,
                     gint      vertical,
                     gint      horizontal)
 {
-  GtkRequisition requisition = { 0 };
+  GtkRequisition requisition = { 0, 0 };
   GtkCListRow *clist_row;
 
   g_return_if_fail (clist != NULL);
@@ -3216,7 +3216,7 @@ gtk_clist_set_cell_style (GtkCList *clist,
                          gint      column,
                          GtkStyle *style)
 {
-  GtkRequisition requisition = { 0 };
+  GtkRequisition requisition = { 0, 0 };
   GtkCListRow *clist_row;
 
   g_return_if_fail (clist != NULL);
@@ -7120,7 +7120,7 @@ move_vertical (GtkCList *clist,
 static gint
 horizontal_timeout (GtkCList *clist)
 {
-  GdkEventMotion event = { 0 };
+  GdkEventMotion event;
 
   GDK_THREADS_ENTER ();
 
@@ -7139,7 +7139,7 @@ horizontal_timeout (GtkCList *clist)
 static gint
 vertical_timeout (GtkCList *clist)
 {
-  GdkEventMotion event = { 0 };
+  GdkEventMotion event;
 
   GDK_THREADS_ENTER ();
 
@@ -7344,7 +7344,7 @@ gtk_clist_merge (GtkCList *clist,
                 GList    *a,         /* first list to merge */
                 GList    *b)         /* second list to merge */
 {
-  GList z = { 0 };                    /* auxiliary node */
+  GList z = { NULL, NULL, NULL };     /* auxiliary node */
   GList *c;
   gint cmp;