2.8.20
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
4
INSTALL
4
INSTALL
@@ -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
2
NEWS
@@ -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
2
README
@@ -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.
|
||||
|
||||
@@ -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 ===
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
@@ -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 ===
|
||||
|
||||
@@ -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 ===
|
||||
|
||||
@@ -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__
|
||||
|
||||
@@ -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__
|
||||
|
||||
@@ -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__
|
||||
|
||||
@@ -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__
|
||||
|
||||
@@ -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 ===
|
||||
|
||||
Reference in New Issue
Block a user