diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-08 19:54:11 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-08 19:54:11 +0800 |
commit | d0bf32aad9e7f27f50ffc45abe0e1e0cb0a433ad (patch) | |
tree | 7ad675294866c78ab859941928b876c421c185d3 /embed/mozilla/EphySingle.cpp | |
parent | 1bb4b10ce6a3e857b14e0637e17203960dcc9543 (diff) | |
download | gsoc2013-epiphany-d0bf32aad9e7f27f50ffc45abe0e1e0cb0a433ad.tar gsoc2013-epiphany-d0bf32aad9e7f27f50ffc45abe0e1e0cb0a433ad.tar.gz gsoc2013-epiphany-d0bf32aad9e7f27f50ffc45abe0e1e0cb0a433ad.tar.bz2 gsoc2013-epiphany-d0bf32aad9e7f27f50ffc45abe0e1e0cb0a433ad.tar.lz gsoc2013-epiphany-d0bf32aad9e7f27f50ffc45abe0e1e0cb0a433ad.tar.xz gsoc2013-epiphany-d0bf32aad9e7f27f50ffc45abe0e1e0cb0a433ad.tar.zst gsoc2013-epiphany-d0bf32aad9e7f27f50ffc45abe0e1e0cb0a433ad.zip |
Consistent naming for nsresult vars. Since 'rv' had the majority, 'rv' it
2004-08-08 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphyBrowser.cpp:
* embed/mozilla/EphySingle.cpp:
* embed/mozilla/EventContext.cpp:
* embed/mozilla/MozillaPrivate.cpp:
* embed/mozilla/mozilla-embed-single.cpp:
* embed/mozilla/mozilla-embed.cpp:
Consistent naming for nsresult vars. Since 'rv' had the majority,
'rv' it is.
Diffstat (limited to 'embed/mozilla/EphySingle.cpp')
-rw-r--r-- | embed/mozilla/EphySingle.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/embed/mozilla/EphySingle.cpp b/embed/mozilla/EphySingle.cpp index 7dc59b811..e8f2d4ee4 100644 --- a/embed/mozilla/EphySingle.cpp +++ b/embed/mozilla/EphySingle.cpp @@ -298,10 +298,10 @@ mozilla_cookie_to_ephy_cookie (nsICookie *cookie) EphyPermissionInfo * mozilla_permission_to_ephy_permission (nsIPermission *perm) { - nsresult result; + nsresult rv; nsEmbedCString type; - result = perm->GetType(type); - NS_ENSURE_SUCCESS (result, NULL); + rv = perm->GetType(type); + NS_ENSURE_SUCCESS (rv, NULL); PRUint32 cap; perm->GetCapability(&cap); |