diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-12-05 06:10:40 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-12-05 06:10:40 +0800 |
commit | e70df82868d7b3a6f17a1ebcedc54b2175749504 (patch) | |
tree | 1dc634f9ba3f08432678434e993bf410d5393fb6 /embed/mozilla | |
parent | 060e1e90fc45b0ec50466fbd30f988fe51440a7a (diff) | |
download | gsoc2013-epiphany-e70df82868d7b3a6f17a1ebcedc54b2175749504.tar gsoc2013-epiphany-e70df82868d7b3a6f17a1ebcedc54b2175749504.tar.gz gsoc2013-epiphany-e70df82868d7b3a6f17a1ebcedc54b2175749504.tar.bz2 gsoc2013-epiphany-e70df82868d7b3a6f17a1ebcedc54b2175749504.tar.lz gsoc2013-epiphany-e70df82868d7b3a6f17a1ebcedc54b2175749504.tar.xz gsoc2013-epiphany-e70df82868d7b3a6f17a1ebcedc54b2175749504.tar.zst gsoc2013-epiphany-e70df82868d7b3a6f17a1ebcedc54b2175749504.zip |
Version 2.17.3.
2006-12-04 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
Version 2.17.3.
* embed/mozilla/GtkNSSDialogs.cpp:
Use NULL for gtk_label_new instead of "".
* lib/ephy-print-utils.c:
(ephy_print_utils_page_setup_new_from_key_file):
Fix possible invalid free.
* lib/widgets/ephy-spinner.c: (ephy_spinner_images_unref),
(ephy_spinner_images_load), (ephy_spinner_load_images),
(ephy_spinner_expose), (bump_spinner_frame_cb),
(ephy_spinner_start), (ephy_spinner_stop):
Fix compliance with icon theme spec by skipping the first frame in the
animation when in spinning mode. Bug #382207.
Try the "process-working" icon first and fall back to "gnome-spinner"
when it's not available.
* m4/gecko.m4:
Updated.
2006-12-04 Luca Ferretti <elle.uca@libero.it>
Diffstat (limited to 'embed/mozilla')
-rw-r--r-- | embed/mozilla/GeckoPrintSession.cpp | 2 | ||||
-rw-r--r-- | embed/mozilla/GtkNSSDialogs.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/embed/mozilla/GeckoPrintSession.cpp b/embed/mozilla/GeckoPrintSession.cpp index 290b0eb7a..4c60bc74f 100644 --- a/embed/mozilla/GeckoPrintSession.cpp +++ b/embed/mozilla/GeckoPrintSession.cpp @@ -130,7 +130,7 @@ GeckoPrintSession::SetSettings (GtkPrintSettings *aSettings, { char *base, *tmpName; - /* FIXME: use pure glib here! */ + /* FIXME: use pure glib here (g_mkstemp)! */ base = g_build_filename (ephy_file_tmp_dir (), "print-XXXXXX", (const char *) NULL); tmpName = ephy_file_tmp_filename (base, "ps"); g_free (base); diff --git a/embed/mozilla/GtkNSSDialogs.cpp b/embed/mozilla/GtkNSSDialogs.cpp index 391d6cbcd..ddf14848f 100644 --- a/embed/mozilla/GtkNSSDialogs.cpp +++ b/embed/mozilla/GtkNSSDialogs.cpp @@ -148,7 +148,7 @@ higgy_indent_widget (GtkWidget *widget) hbox = gtk_hbox_new (FALSE, 6); - label = gtk_label_new (""); + label = gtk_label_new (NULL); gtk_box_pack_start (GTK_BOX(hbox), label, FALSE, TRUE, 6); gtk_widget_show (label); |