summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorIvan Timofeev <timofeev.i.s@gmail.com>2013-02-22 23:57:57 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2013-02-22 23:59:39 +0400
commit5aa1307df6da9f8c17fa01d54be4d4184a31b299 (patch)
treeee7b8f67b56326a06b28cc2c638af053157b2562 /sd
parentecd8b349015ef43bc2407f6ebf2053cb7b3b6c6f (diff)
fix Search->indexOf change
Change-Id: I64eb8128c5719a5e7601f15367342e98140e0789
Diffstat (limited to 'sd')
-rw-r--r--sd/source/filter/ppt/pptin.cxx2
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;
}