diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-07-15 20:33:56 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-07-15 20:33:56 +0800 |
commit | 945e7a58faa779fe69bac52fcdb130989ebe17d2 (patch) | |
tree | f3cfeb0c94827880d272fa26dd9e5b7d515de2b4 | |
parent | f33d96649a39b25ecdc33acf430be5edc0380270 (diff) | |
download | gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.tar gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.tar.gz gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.tar.bz2 gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.tar.lz gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.tar.xz gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.tar.zst gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.zip |
Fix compiler warning.
2003-07-15 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/mozilla-embed-single.cpp: (impl_get_font_list):
Fix compiler warning.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed-single.cpp | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2003-07-15 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/mozilla-embed-single.cpp: (impl_get_font_list): + + Fix compiler warning. + 2003-07-15 Marco Pesenti Gritti <marco@it.gnome.org> * NEWS: diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp index ca2e4fd3f..0bc26d46c 100644 --- a/embed/mozilla/mozilla-embed-single.cpp +++ b/embed/mozilla/mozilla-embed-single.cpp @@ -807,7 +807,7 @@ impl_get_font_list (EphyEmbedSingle *shell, &fontCount, &fontArray); if (NS_FAILED (rv)) return G_FAILED; - for (int i = 0; i < fontCount; i++) + for (PRUint32 i = 0; i < fontCount; i++) { char *gFontString; |