diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-11-14 19:49:07 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-11-14 19:49:07 +0800 |
commit | 7f802d19fc9078d17f64c8a3c44dadf467623ab4 (patch) | |
tree | 0e081eaf243491c07e0a3fab8631a75a892c04bf | |
parent | 3ec70df3e6c1a802c23dbb3f4cb8ea9fac06fe6b (diff) | |
download | gsoc2013-epiphany-7f802d19fc9078d17f64c8a3c44dadf467623ab4.tar gsoc2013-epiphany-7f802d19fc9078d17f64c8a3c44dadf467623ab4.tar.gz gsoc2013-epiphany-7f802d19fc9078d17f64c8a3c44dadf467623ab4.tar.bz2 gsoc2013-epiphany-7f802d19fc9078d17f64c8a3c44dadf467623ab4.tar.lz gsoc2013-epiphany-7f802d19fc9078d17f64c8a3c44dadf467623ab4.tar.xz gsoc2013-epiphany-7f802d19fc9078d17f64c8a3c44dadf467623ab4.tar.zst gsoc2013-epiphany-7f802d19fc9078d17f64c8a3c44dadf467623ab4.zip |
Fix signed/unsigned int confusion.
2004-11-14 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-history.c: (remove_obsolete_pages):
* src/bookmarks/ephy-bookmarks.c: (clear_favorites):
Fix signed/unsigned int confusion.
-rw-r--r-- | ChangeLog | 30 | ||||
-rw-r--r-- | embed/ephy-history.c | 2 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks.c | 2 |
3 files changed, 31 insertions, 3 deletions
@@ -1,3 +1,32 @@ +2004-11-14 Christian Persch <chpe@cvs.gnome.org> + + * embed/ephy-history.c: (remove_obsolete_pages): + * src/bookmarks/ephy-bookmarks.c: (clear_favorites): + + Fix signed/unsigned int confusion. + +2004-11-12 Christian Persch <chpe@cvs.gnome.org> + + * configure.in: + * NEWS: + + Version 1.2.10. + +2004-11-12 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/EphyBrowser.cpp: + * embed/mozilla/EphyBrowser.h: + * embed/mozilla/Makefile.am: + + Check favicon urls with script sec manager and content policy. + +2004-11-12 Christian Persch <chpe@cvs.gnome.org> + + * embed/ephy-history.c: (remove_obsolete_pages): + * src/bookmarks/ephy-bookmarks.c: (clear_favorites): + + Fix signed/unsigned int confusion. + 2004-11-03 Christian Persch <chpe@cvs.gnome.org> * src/ephy-window.c: (modal_alert_cb): @@ -8041,4 +8070,3 @@ * src/ephy-window.c: Remove unused includes, they was causing warnings on solaris - diff --git a/embed/ephy-history.c b/embed/ephy-history.c index 4adca27cd..0101f4656 100644 --- a/embed/ephy-history.c +++ b/embed/ephy-history.c @@ -231,7 +231,7 @@ remove_obsolete_pages (EphyHistory *eb) g_date_set_time (¤t_date, time (NULL)); children = ephy_node_get_children (eb->priv->pages); - for (i = children->len -1; i >= 0; i--) + for (i = (int) children->len -1; i >= 0; i--) { EphyNode *kid; diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index d9a0f7b7d..1846e4532 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -401,7 +401,7 @@ clear_favorites (EphyBookmarks *bookmarks) node = bookmarks->priv->favorites; children = ephy_node_get_children (node); - for (i = children->len - 1; i >= 0; i--) + for (i = (int) children->len - 1; i >= 0; i--) { EphyNode *kid; |