aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-12-03 00:14:15 +0800
committerChristian Persch <chpe@src.gnome.org>2004-12-03 00:14:15 +0800
commit69c94bb85ee4c25ea545b872c7d81e34fd922a36 (patch)
tree049ae18979e671365d5583c88fdc541a30124323
parent86e3f1670d56b62244ed99d73dc9490791402fd6 (diff)
downloadgsoc2013-epiphany-69c94bb85ee4c25ea545b872c7d81e34fd922a36.tar
gsoc2013-epiphany-69c94bb85ee4c25ea545b872c7d81e34fd922a36.tar.gz
gsoc2013-epiphany-69c94bb85ee4c25ea545b872c7d81e34fd922a36.tar.bz2
gsoc2013-epiphany-69c94bb85ee4c25ea545b872c7d81e34fd922a36.tar.lz
gsoc2013-epiphany-69c94bb85ee4c25ea545b872c7d81e34fd922a36.tar.xz
gsoc2013-epiphany-69c94bb85ee4c25ea545b872c7d81e34fd922a36.tar.zst
gsoc2013-epiphany-69c94bb85ee4c25ea545b872c7d81e34fd922a36.zip
Don't use NS_LITERAL_CSTRING.
2004-12-02 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/EphyHistoryListener.cpp: Don't use NS_LITERAL_CSTRING.
-rw-r--r--ChangeLog6
-rw-r--r--embed/mozilla/EphyHistoryListener.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ae70ee241..41066391a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2004-12-02 Christian Persch <chpe@cvs.gnome.org>
+ * embed/mozilla/EphyHistoryListener.cpp:
+
+ Don't use NS_LITERAL_CSTRING.
+
+2004-12-02 Christian Persch <chpe@cvs.gnome.org>
+
* doc/reference/Makefile.am:
Removed references to removed files.
diff --git a/embed/mozilla/EphyHistoryListener.cpp b/embed/mozilla/EphyHistoryListener.cpp
index 6767b2cd3..dc916cc8d 100644
--- a/embed/mozilla/EphyHistoryListener.cpp
+++ b/embed/mozilla/EphyHistoryListener.cpp
@@ -107,7 +107,7 @@ EphyHistoryListener::OnStateChange (nsIWebProgress *aWebProgress,
nsEmbedCString location;
rv = httpChannel->GetResponseHeader
- (NS_LITERAL_CSTRING ("Location"), location);
+ (nsEmbedCString ("Location"), location);
NS_ENSURE_TRUE (NS_SUCCEEDED (rv) && location.Length(), rv);
nsCOMPtr<nsIURI> toURI;