This commit is contained in:
Matthias Clasen
2006-07-02 16:46:25 +00:00
parent f17938cc21
commit 274ffa3350
14 changed files with 46 additions and 8 deletions

View File

@@ -1,4 +1,11 @@
2006-07-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.8.20 ===
* NEWS: Updates
* demos/gtk-demo/editable_cells.c: Portability fix.
(#346375, Thomas Klausner)
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_finalize):
Don't leak default_sort_data. (#346341, Christian Weiske)

View File

@@ -1,4 +1,11 @@
2006-07-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.8.20 ===
* NEWS: Updates
* demos/gtk-demo/editable_cells.c: Portability fix.
(#346375, Thomas Klausner)
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_finalize):
Don't leak default_sort_data. (#346341, Christian Weiske)

View File

@@ -18,8 +18,8 @@ GTK+ requires the following packages:
Simple install procedure
========================
% gzip -cd gtk+-2.8.19.tar.gz | tar xvf - # unpack the sources
% cd gtk+-2.8.19 # change to the toplevel directory
% gzip -cd gtk+-2.8.20.tar.gz | tar xvf - # unpack the sources
% cd gtk+-2.8.20 # change to the toplevel directory
% ./configure # run the `configure' script
% make # build GTK
[ Become root if necessary ]

2
NEWS
View File

@@ -9,6 +9,8 @@ Overview of changes from GTK+ 2.8.19 to 2.8.20
346102 root window doesn't update size as it should
346341 Memory leak in gtk_tree_model_sort_finalize: User data
not freed
346375 MIPSPro compilation fix for gtk-2.8.19
346374 Patches for Interix
* Updated translations (lv)

2
README
View File

@@ -1,7 +1,7 @@
General Information
===================
This is GTK+ version 2.8.19. GTK+ is a multi-platform toolkit for
This is GTK+ version 2.8.20. GTK+ is a multi-platform toolkit for
creating graphical user interfaces. Offering a complete set of widgets,
GTK+ is suitable for projects ranging from small one-off projects to
complete application suites.

View File

@@ -1,3 +1,7 @@
2006-07-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.8.20 ===
2006-06-12 Matthias Clasen <mclasen@redhat.com>
* === Released 2.8.19 ===

View File

@@ -121,7 +121,10 @@ create_numbers_model (void)
/* add numbers */
for (i = 0; i < N_NUMBERS; i++)
{
char str[2] = { '0' + i, '\0' };
char str[2];
str[0] = '0' + i;
str[1] = '\0';
gtk_list_store_append (model, &iter);

View File

@@ -1,3 +1,7 @@
2006-07-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.8.20 ===
2006-06-12 Matthias Clasen <mclasen@redhat.com>
* === Released 2.8.19 ===

View File

@@ -1,3 +1,10 @@
2006-07-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.8.20 ===
* pixops/*.S: NetBSD portability fixes. (#346374,
Thomas Klausner)
2006-06-12 Matthias Clasen <mclasen@redhat.com>
* === Released 2.8.19 ===

View File

@@ -22,7 +22,7 @@ gcc2_compiled.:
.text
.align 16
#if !defined(__MINGW32__) && !defined(__CYGWIN__)
#if !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(__INTERIX)
/* Magic indicating no need for an executable stack */
#if !defined __powerpc64__ && !defined __ia64__

View File

@@ -22,7 +22,7 @@ gcc2_compiled.:
.text
.align 16
#if !defined(__MINGW32__) && !defined(__CYGWIN__)
#if !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(__INTERIX)
/* Magic indicating no need for an executable stack */
#if !defined __powerpc64__ && !defined __ia64__

View File

@@ -22,7 +22,7 @@ gcc2_compiled.:
.text
.align 16
#if !defined(__MINGW32__) && !defined(__CYGWIN__)
#if !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(__INTERIX)
/* Magic indicating no need for an executable stack */
#if !defined __powerpc64__ && !defined __ia64__

View File

@@ -22,7 +22,7 @@ gcc2_compiled.:
.text
.align 16
#if !defined(__MINGW32__) && !defined(__CYGWIN__)
#if !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(__INTERIX)
/* Magic indicating no need for an executable stack */
#if !defined __powerpc64__ && !defined __ia64__

View File

@@ -1,3 +1,7 @@
2006-07-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.8.20 ===
2006-06-12 Matthias Clasen <mclasen@redhat.com>
* === Released 2.8.19 ===