mshtml: Constify a character string.

This commit is contained in:
Frédéric Delanoy 2013-12-16 23:26:12 +01:00 committed by Alexandre Julliard
parent 3c6a4fe554
commit ff9bbe3721
1 changed files with 1 additions and 1 deletions

View File

@ -460,7 +460,7 @@ static HRESULT WINAPI HTMLDocument_put_designMode(IHTMLDocument2 *iface, BSTR v)
static HRESULT WINAPI HTMLDocument_get_designMode(IHTMLDocument2 *iface, BSTR *p)
{
HTMLDocument *This = impl_from_IHTMLDocument2(iface);
static WCHAR szOff[] = {'O','f','f',0};
static const WCHAR szOff[] = {'O','f','f',0};
FIXME("(%p)->(%p) always returning Off\n", This, p);
if(!p)