aboutsummaryrefslogtreecommitdiffstats
path: root/embed/mozilla/EventContext.cpp
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-05-15 03:43:10 +0800
committerChristian Persch <chpe@src.gnome.org>2006-05-15 03:43:10 +0800
commit9afceec1f0af2a55be0bf72850c3b6520a83d63d (patch)
tree64041c08cf318dfde736325ec708f57091bcdae5 /embed/mozilla/EventContext.cpp
parentd69ef4bcd9190d6f128f341e17805493b672cf6e (diff)
downloadgsoc2013-epiphany-9afceec1f0af2a55be0bf72850c3b6520a83d63d.tar
gsoc2013-epiphany-9afceec1f0af2a55be0bf72850c3b6520a83d63d.tar.gz
gsoc2013-epiphany-9afceec1f0af2a55be0bf72850c3b6520a83d63d.tar.bz2
gsoc2013-epiphany-9afceec1f0af2a55be0bf72850c3b6520a83d63d.tar.lz
gsoc2013-epiphany-9afceec1f0af2a55be0bf72850c3b6520a83d63d.tar.xz
gsoc2013-epiphany-9afceec1f0af2a55be0bf72850c3b6520a83d63d.tar.zst
gsoc2013-epiphany-9afceec1f0af2a55be0bf72850c3b6520a83d63d.zip
Use nsAString::Equals.
2006-05-14 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/EphyUtils.cpp: * embed/mozilla/EphyUtils.h: * embed/mozilla/EventContext.cpp: Use nsAString::Equals.
Diffstat (limited to 'embed/mozilla/EventContext.cpp')
-rw-r--r--embed/mozilla/EventContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/mozilla/EventContext.cpp b/embed/mozilla/EventContext.cpp
index 6c16ee047..dfb29dac6 100644
--- a/embed/mozilla/EventContext.cpp
+++ b/embed/mozilla/EventContext.cpp
@@ -350,7 +350,7 @@ nsresult EventContext::GetEventContext (nsIDOMEventTarget *EventTarget,
imgMapName.Cut (0,1);
// Check if the current image is attached to the map we are looking for
- if (EphyUtils::StringEquals(imgMapName, mapName))
+ if (imgMapName.Equals(mapName))
{
nsString imgSrc;
rv = img->GetSrc (imgSrc);