diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-0 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-2 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 5 | ||||
-rw-r--r-- | gtk/gtkliststore.h | 2 |
8 files changed, 36 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2001-08-22 Anders Carlsson <andersca@gnu.org> + + * gtk/gtkliststore.h (GTK_LIST_STORE_CLASS): Fix a small typo. + It's LIST_STORE, not LISTSTORE. + Tue Aug 21 12:43:29 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtk.h: Remove commented out gtkpacker reference. diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 30a4ab071e..4b75986bbb 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,8 @@ +2001-08-22 Anders Carlsson <andersca@gnu.org> + + * gtk/gtkliststore.h (GTK_LIST_STORE_CLASS): Fix a small typo. + It's LIST_STORE, not LISTSTORE. + Tue Aug 21 12:43:29 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtk.h: Remove commented out gtkpacker reference. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 30a4ab071e..4b75986bbb 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2001-08-22 Anders Carlsson <andersca@gnu.org> + + * gtk/gtkliststore.h (GTK_LIST_STORE_CLASS): Fix a small typo. + It's LIST_STORE, not LISTSTORE. + Tue Aug 21 12:43:29 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtk.h: Remove commented out gtkpacker reference. diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 30a4ab071e..4b75986bbb 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +2001-08-22 Anders Carlsson <andersca@gnu.org> + + * gtk/gtkliststore.h (GTK_LIST_STORE_CLASS): Fix a small typo. + It's LIST_STORE, not LISTSTORE. + Tue Aug 21 12:43:29 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtk.h: Remove commented out gtkpacker reference. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 30a4ab071e..4b75986bbb 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2001-08-22 Anders Carlsson <andersca@gnu.org> + + * gtk/gtkliststore.h (GTK_LIST_STORE_CLASS): Fix a small typo. + It's LIST_STORE, not LISTSTORE. + Tue Aug 21 12:43:29 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtk.h: Remove commented out gtkpacker reference. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 30a4ab071e..4b75986bbb 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2001-08-22 Anders Carlsson <andersca@gnu.org> + + * gtk/gtkliststore.h (GTK_LIST_STORE_CLASS): Fix a small typo. + It's LIST_STORE, not LISTSTORE. + Tue Aug 21 12:43:29 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtk.h: Remove commented out gtkpacker reference. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 30a4ab071e..4b75986bbb 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2001-08-22 Anders Carlsson <andersca@gnu.org> + + * gtk/gtkliststore.h (GTK_LIST_STORE_CLASS): Fix a small typo. + It's LIST_STORE, not LISTSTORE. + Tue Aug 21 12:43:29 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtk.h: Remove commented out gtkpacker reference. diff --git a/gtk/gtkliststore.h b/gtk/gtkliststore.h index 7a1e5c8d52..764a10caf6 100644 --- a/gtk/gtkliststore.h +++ b/gtk/gtkliststore.h @@ -29,7 +29,7 @@ extern "C" { #define GTK_TYPE_LIST_STORE (gtk_list_store_get_type ()) #define GTK_LIST_STORE(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_LIST_STORE, GtkListStore)) -#define GTK_LIST_STORE_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_LISTSTORE, GtkListStoreClass)) +#define GTK_LIST_STORE_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_LIST_STORE, GtkListStoreClass)) #define GTK_IS_LIST_STORE(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_LIST_STORE)) #define GTK_IS_LIST_STORE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), GTK_TYPE_LIST_STORE)) #define GTK_LIST_STORE_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_LIST_STORE, GtkListStoreClass)) |