diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-10-05 21:19:37 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-10-05 21:19:37 +0800 |
commit | 4c087f746d4c5b4c0f5d7a90826f87e9933d407a (patch) | |
tree | 642797e494f3c5392e8acf0dc50c144511df3665 | |
parent | fa877515d5a9dd4befe71291d7708649d979f51f (diff) | |
download | gsoc2013-epiphany-4c087f746d4c5b4c0f5d7a90826f87e9933d407a.tar gsoc2013-epiphany-4c087f746d4c5b4c0f5d7a90826f87e9933d407a.tar.gz gsoc2013-epiphany-4c087f746d4c5b4c0f5d7a90826f87e9933d407a.tar.bz2 gsoc2013-epiphany-4c087f746d4c5b4c0f5d7a90826f87e9933d407a.tar.lz gsoc2013-epiphany-4c087f746d4c5b4c0f5d7a90826f87e9933d407a.tar.xz gsoc2013-epiphany-4c087f746d4c5b4c0f5d7a90826f87e9933d407a.tar.zst gsoc2013-epiphany-4c087f746d4c5b4c0f5d7a90826f87e9933d407a.zip |
Fix build with gecko 1.8.1.
2006-10-05 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/GeckoSpellCheckEngine.cpp:
Fix build with gecko 1.8.1.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/GeckoSpellCheckEngine.cpp | 4 |
2 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2006-10-05 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/GeckoSpellCheckEngine.cpp: + + Fix build with gecko 1.8.1. + 2006-10-02 Christian Persch <chpe@cvs.gnome.org> * src/ephy-history-window.c: (confirmation_dialog_construct), diff --git a/embed/mozilla/GeckoSpellCheckEngine.cpp b/embed/mozilla/GeckoSpellCheckEngine.cpp index e974c51a1..08f5ede18 100644 --- a/embed/mozilla/GeckoSpellCheckEngine.cpp +++ b/embed/mozilla/GeckoSpellCheckEngine.cpp @@ -34,6 +34,10 @@ #include "GeckoSpellCheckEngine.h" +#ifndef HAVE_GECKO_1_9 +#define ToNewUnicode NS_StringCloneData +#endif + GeckoSpellCheckEngine::GeckoSpellCheckEngine () { LOG ("GeckoSpellCheckEngine ctor [%p]", (void*) this); |