summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlform.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/html/htmlform.cxx')
-rw-r--r--sw/source/filter/html/htmlform.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/html/htmlform.cxx b/sw/source/filter/html/htmlform.cxx
index de22a460c470..7d767051c63c 100644
--- a/sw/source/filter/html/htmlform.cxx
+++ b/sw/source/filter/html/htmlform.cxx
@@ -1467,7 +1467,7 @@ void SwHTMLParser::InsertInput()
std::vector<OUString> aUnoMacroParamTbl;
sal_uInt16 nSize = 0;
sal_Int16 nMaxLen = 0;
- sal_Int16 nChecked = STATE_NOCHECK;
+ sal_Int16 nChecked = TRISTATE_FALSE;
sal_Int32 nTabIndex = TABINDEX_MAX + 1;
HTMLInputType eType = HTML_IT_TEXT;
sal_Bool bDisabled = sal_False, bValue = sal_False;
@@ -1511,7 +1511,7 @@ void SwHTMLParser::InsertInput()
bValue = sal_True;
break;
case HTML_O_CHECKED:
- nChecked = STATE_CHECK;
+ nChecked = TRISTATE_TRUE;
break;
case HTML_O_DISABLED:
bDisabled = sal_True;