Fixed the duplicates in the enum.

This commit is contained in:
tbogard%aol.net 2000-04-21 23:23:17 +00:00
Родитель 5e8f7fa03f
Коммит c6657ce589
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -77,8 +77,8 @@ interface nsIWebNavigation : nsISupports
Definitions for the reload types.
*/
const long reloadNormal=0; // Does a normal reload
const long reloadBypassCache=2; // Reloads bypassing the cache
const long reloadBypassProxy=3; // Reloads bypassing the proxy
const long reloadBypassCache=1; // Reloads bypassing the cache
const long reloadBypassProxy=2; // Reloads bypassing the proxy
const long reloadBypassProxyAndCache=3; // Reloads bypassing proxy and cache
/*