aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;