diff options
author | Christian Persch <chpe@gnome.org> | 2007-07-15 18:19:27 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-07-15 18:19:27 +0800 |
commit | 897c314dffc4a71d0fba525a7a70039c75f6851d (patch) | |
tree | b067d87b98da3c9d35a27e6590a8641a1224593f /embed/mozilla/GeckoFormSigningDialog.cpp | |
parent | 843c8e008f30143d928aef1fc41f6fa6499c277c (diff) | |
download | gsoc2013-epiphany-897c314dffc4a71d0fba525a7a70039c75f6851d.tar.gz gsoc2013-epiphany-897c314dffc4a71d0fba525a7a70039c75f6851d.tar.zst gsoc2013-epiphany-897c314dffc4a71d0fba525a7a70039c75f6851d.zip |
Use C++ casts. Script from bmo#348748.
2007-07-15 Christian Persch <chpe@gnome.org>
* embed/mozilla/EphyBrowser.cpp:
* embed/mozilla/EphyHeaderSniffer.cpp:
* embed/mozilla/EphyHistoryListener.cpp:
* embed/mozilla/EphyPromptService.cpp:
* embed/mozilla/GeckoFormSigningDialog.cpp:
* embed/mozilla/GeckoPrintService.cpp:
* embed/mozilla/GeckoPrintSession.cpp:
* embed/mozilla/mozilla-embed-event.cpp:
* embed/mozilla/mozilla-embed.cpp:
* plugins/desktop-file/plugin.cpp:
Use C++ casts. Script from bmo#348748.
svn path=/trunk/; revision=7166
Diffstat (limited to 'embed/mozilla/GeckoFormSigningDialog.cpp')
-rw-r--r-- | embed/mozilla/GeckoFormSigningDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/mozilla/GeckoFormSigningDialog.cpp b/embed/mozilla/GeckoFormSigningDialog.cpp index 572de8aa2..309b3c11e 100644 --- a/embed/mozilla/GeckoFormSigningDialog.cpp +++ b/embed/mozilla/GeckoFormSigningDialog.cpp @@ -45,7 +45,7 @@ #include "GeckoFormSigningDialog.h" -#define LITERAL(s) NS_REINTERPRET_CAST(const nsAString::char_type*, NS_L(s)) +#define LITERAL(s) reinterpret_cast<const nsAString::char_type*>(NS_L(s)) NS_IMPL_ISUPPORTS1 (GeckoFormSigningDialog, nsIFormSigningDialog) |