summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2000-11-14 01:08:28 +0000
committerHavoc Pennington <hp@src.gnome.org>2000-11-14 01:08:28 +0000
commit73a00eeb447d40a6ed53ac57c482e4d1cb9483f3 (patch)
tree2b047070821790df0a34f712590ece91a64a14b3 /gdk-pixbuf
parentf15049bd0241241c6865d9405a331ef1694ace56 (diff)
downloadgtk+-73a00eeb447d40a6ed53ac57c482e4d1cb9483f3.tar.gz
fix bug where GC didn't always get updated properly
2000-11-13 Havoc Pennington <hp@redhat.com> * gtk/gtktextdisplay.c (gtk_text_render_state_update): fix bug where GC didn't always get updated properly * demos/gtk-demo/textview.c (create_tags): Use subattributes of fonts instead of setting the entire font * gtk/testtext.c (fill_example_buffer): Use "size" instead of setting entire font * gtk/gtkdialog.c (gtk_dialog_add_button): Fix some warnings * gtk/gtktexttag.h, gtk/gtktexttag.c: Explode font_desc into a bunch of individually-settable font attributes. You can still use the "font" and "font_desc" args, they just set all the font attributes at once.
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r--gdk-pixbuf/ChangeLog5
-rw-r--r--gdk-pixbuf/io-png.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog
index 1355b8cf1e..ee6e3550ba 100644
--- a/gdk-pixbuf/ChangeLog
+++ b/gdk-pixbuf/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-13 Havoc Pennington <hp@redhat.com>
+
+ * io-png.c (png_simple_error_callback): fix error message to not
+ say "save" since it's used for loading
+
2000-11-11 Hans Breuer <Hans@Breuer.Org>
* gdk-pixbuf-io.c : Fix all function prototype macros for self
diff --git a/gdk-pixbuf/io-png.c b/gdk-pixbuf/io-png.c
index bd945f7943..321956ebad 100644
--- a/gdk-pixbuf/io-png.c
+++ b/gdk-pixbuf/io-png.c
@@ -155,7 +155,7 @@ png_simple_error_callback(png_structp png_save_ptr,
g_set_error (error,
GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_FAILED,
- _("Fatal error saving PNG image file: %s"),
+ _("Fatal error in PNG image file: %s"),
error_msg);
}
}