fix for bug 200330 - const the heck out of htmlparser!

sr=sfraser, r=jag


git-svn-id: svn://10.0.0.236/trunk@140605 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
alecf%netscape.com
2003-04-02 22:59:51 +00:00
parent f3c978ebbf
commit a06219c70d
22 changed files with 300 additions and 300 deletions

View File

@@ -114,8 +114,8 @@ static NS_DEFINE_IID(kClassIID, NS_VIEWSOURCE_HTML_IID);
// bug 22022 - these are used to toggle 'Wrap Long Lines' on the viewsource
// window by selectively setting/unsetting the following class defined in
// viewsource.css; the setting is remembered between invocations using a pref.
static const char* kBodyId = "viewsource";
static const char* kBodyClassWrap = "wrap";
static const char kBodyId[] = "viewsource";
static const char kBodyClassWrap[] = "wrap";
/**
* This method gets called as part of our COM-like interfaces.