diff options
Diffstat (limited to 'embed/mozilla/EphyBrowser.h')
-rw-r--r-- | embed/mozilla/EphyBrowser.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/embed/mozilla/EphyBrowser.h b/embed/mozilla/EphyBrowser.h index 52cb31d50..66e97c9e5 100644 --- a/embed/mozilla/EphyBrowser.h +++ b/embed/mozilla/EphyBrowser.h @@ -113,11 +113,11 @@ public: nsresult GoToHistoryIndex (PRInt16 index); #if (!MOZILLA_IS_BRANCH (1, 7) || !MOZILLA_CHECK_VERSION3 (1, 7, 3)) && !MOZILLA_CHECK_VERSION4 (1, 8, MOZILLA_ALPHA, 3) - enum { RELOAD_NORMAL = 0 }; - enum { RELOAD_FORCE = 1 }; - enum { RELOAD_ENCODING_CHANGE = 2 }; + enum ReloadType { RELOAD_NORMAL = 0, + RELOAD_FORCE = 1, + RELOAD_ENCODING_CHANGE = 2 }; - nsresult Reload (PRUint32 flags); + nsresult Reload (ReloadType flags); #endif nsresult ForceEncoding (const char *encoding); |