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.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/filter/html/htmlform.cxx b/sw/source/filter/html/htmlform.cxx
index f03b7614ae97..41d488ed39ef 100644
--- a/sw/source/filter/html/htmlform.cxx
+++ b/sw/source/filter/html/htmlform.cxx
@@ -826,10 +826,10 @@ static void lcl_html_setEvents(
for( i=0; i< rUnoMacroTbl.size(); i++ )
{
const String& rStr(rUnoMacroTbl[i]);
- xub_StrLen nIndex = 0;
- if( !rStr.GetToken( 0, '-', nIndex ).Len() || STRING_NOTFOUND == nIndex )
+ sal_Int32 nIndex = 0;
+ if( !rStr.GetToken( 0, '-', nIndex ).Len() || -1 == nIndex )
continue;
- if( !rStr.GetToken( 0, '-', nIndex ).Len() || STRING_NOTFOUND == nIndex )
+ if( !rStr.GetToken( 0, '-', nIndex ).Len() || -1 == nIndex )
continue;
if( nIndex < rStr.Len() )
nEvents++;
@@ -859,13 +859,13 @@ static void lcl_html_setEvents(
for( i=0; i< rUnoMacroTbl.size(); ++i )
{
const String& rStr = rUnoMacroTbl[i];
- xub_StrLen nIndex = 0;
+ sal_Int32 nIndex = 0;
String sListener( rStr.GetToken( 0, '-', nIndex ) );
- if( !sListener.Len() || STRING_NOTFOUND == nIndex )
+ if( !sListener.Len() || -1 == nIndex )
continue;
String sMethod( rStr.GetToken( 0, '-', nIndex ) );
- if( !sMethod.Len() || STRING_NOTFOUND == nIndex )
+ if( !sMethod.Len() || -1 == nIndex )
continue;
String sCode( rStr.Copy( nIndex ) );