]> Pileus Git - ~andy/gtk/commitdiff
fix typo in gtk_init_check macro, which caused crashes if argc != 0
authorHans Breuer <hans@breuer.org>
Fri, 29 Mar 2002 22:38:17 +0000 (22:38 +0000)
committerHans Breuer <hans@src.gnome.org>
Fri, 29 Mar 2002 22:38:17 +0000 (22:38 +0000)
2002-03-29  Hans Breuer  <hans@breuer.org>

* gtk/gtkmain.h : fix typo in gtk_init_check macro, which
caused crashes if argc != 0

* gtk/stock-icons/makefile.msc : added new icons

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkmain.h
gtk/stock-icons/makefile.msc

index 9265c4b6bd41fe0c5a6ce8b04886e3d4aad6d55c..d15d5774e3d6a0338f02c86d1aaa8f2aa382535a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2002-03-29  Hans Breuer  <hans@breuer.org>
+
+       * gtk/gtkmain.h : fix typo in gtk_init_check macro, which
+       caused crashes if argc != 0
+
+       * gtk/stock-icons/makefile.msc : added new icons
+
 Fri Mar 29 20:17:35 2002  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered):
index 9265c4b6bd41fe0c5a6ce8b04886e3d4aad6d55c..d15d5774e3d6a0338f02c86d1aaa8f2aa382535a 100644 (file)
@@ -1,3 +1,10 @@
+2002-03-29  Hans Breuer  <hans@breuer.org>
+
+       * gtk/gtkmain.h : fix typo in gtk_init_check macro, which
+       caused crashes if argc != 0
+
+       * gtk/stock-icons/makefile.msc : added new icons
+
 Fri Mar 29 20:17:35 2002  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered):
index 9265c4b6bd41fe0c5a6ce8b04886e3d4aad6d55c..d15d5774e3d6a0338f02c86d1aaa8f2aa382535a 100644 (file)
@@ -1,3 +1,10 @@
+2002-03-29  Hans Breuer  <hans@breuer.org>
+
+       * gtk/gtkmain.h : fix typo in gtk_init_check macro, which
+       caused crashes if argc != 0
+
+       * gtk/stock-icons/makefile.msc : added new icons
+
 Fri Mar 29 20:17:35 2002  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered):
index 9265c4b6bd41fe0c5a6ce8b04886e3d4aad6d55c..d15d5774e3d6a0338f02c86d1aaa8f2aa382535a 100644 (file)
@@ -1,3 +1,10 @@
+2002-03-29  Hans Breuer  <hans@breuer.org>
+
+       * gtk/gtkmain.h : fix typo in gtk_init_check macro, which
+       caused crashes if argc != 0
+
+       * gtk/stock-icons/makefile.msc : added new icons
+
 Fri Mar 29 20:17:35 2002  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered):
index 9265c4b6bd41fe0c5a6ce8b04886e3d4aad6d55c..d15d5774e3d6a0338f02c86d1aaa8f2aa382535a 100644 (file)
@@ -1,3 +1,10 @@
+2002-03-29  Hans Breuer  <hans@breuer.org>
+
+       * gtk/gtkmain.h : fix typo in gtk_init_check macro, which
+       caused crashes if argc != 0
+
+       * gtk/stock-icons/makefile.msc : added new icons
+
 Fri Mar 29 20:17:35 2002  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered):
index 9265c4b6bd41fe0c5a6ce8b04886e3d4aad6d55c..d15d5774e3d6a0338f02c86d1aaa8f2aa382535a 100644 (file)
@@ -1,3 +1,10 @@
+2002-03-29  Hans Breuer  <hans@breuer.org>
+
+       * gtk/gtkmain.h : fix typo in gtk_init_check macro, which
+       caused crashes if argc != 0
+
+       * gtk/stock-icons/makefile.msc : added new icons
+
 Fri Mar 29 20:17:35 2002  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered):
index 1f010d4943bd23301a534dcadb9fab91bcbbe959..83d66de305119a312dca14dd670528ac25d7ea8d 100644 (file)
@@ -105,7 +105,7 @@ gboolean gtk_init_check_abi_check (int        *argc,
                                   size_t  sizeof_GtkWindow);
 
 #define gtk_init(argc, argv) gtk_init_abi_check (argc, argv, 1, sizeof (GtkWindow))
-#define gtk_init_check(args, argv) gtk_init_check_abi_check (argc, argv, 1, sizeof (GtkWindow))
+#define gtk_init_check(argc, argv) gtk_init_check_abi_check (argc, argv, 1, sizeof (GtkWindow))
 
 #endif
 
index 91a71c944efc5d727830ee89f558d023f9be34aa..e018ba510d7293f02ab2ae6de3583a91230a6441 100644 (file)
@@ -1,4 +1,5 @@
 VARIABLES = \
+       stock_add_16            stock_add_16.png        \
        stock_add_24            stock_add_24.png        \
        stock_align_center_16           stock_align_center_16.png       \
        stock_align_center_24           stock_align_center_24.png       \
@@ -77,6 +78,7 @@ VARIABLES = \
        stock_redo_24           stock_redo_24.png       \
        stock_refresh_16                stock_refresh_16.png    \
        stock_refresh_24                stock_refresh_24.png    \
+       stock_remove_16         stock_remove_16.png     \
        stock_remove_24         stock_remove_24.png     \
        stock_revert_16         stock_revert_16.png     \
        stock_revert_24         stock_revert_24.png     \