diff options
author | Ivan Timofeev <timofeev.i.s@gmail.com> | 2013-02-22 23:57:57 +0400 |
---|---|---|
committer | Ivan Timofeev <timofeev.i.s@gmail.com> | 2013-02-22 23:59:39 +0400 |
commit | 5aa1307df6da9f8c17fa01d54be4d4184a31b299 (patch) | |
tree | ee7b8f67b56326a06b28cc2c638af053157b2562 /sd | |
parent | ecd8b349015ef43bc2407f6ebf2053cb7b3b6c6f (diff) |
fix Search->indexOf change
Change-Id: I64eb8128c5719a5e7601f15367342e98140e0789
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/ppt/pptin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/ppt/pptin.cxx b/sd/source/filter/ppt/pptin.cxx index 9226f01f4f91..0925969cca51 100644 --- a/sd/source/filter/ppt/pptin.cxx +++ b/sd/source/filter/ppt/pptin.cxx @@ -115,7 +115,7 @@ SdPPTImport::SdPPTImport( SdDrawDocument* pDocument, SvStream& rDocStream, SvSto { OUString aComment; aPropItem.Read( aComment ); - if ( aComment.indexOf( "Applixware", 0 ) != STRING_NOTFOUND ) + if ( aComment.indexOf( "Applixware" ) >= 0 ) { nImportFlags |= PPT_IMPORTFLAGS_NO_TEXT_ASSERT; } |