[Libreoffice-commits] core.git: sd/source
Michael Stahl
mstahl at redhat.com
Mon Feb 10 08:06:44 PST 2014
sd/source/ui/unoidl/sddetect.cxx | 8 ++++++++
1 file changed, 8 insertions(+)
New commits:
commit e62339f856efa0b8ef03df3bf8b93e098c4ac0d3
Author: Michael Stahl <mstahl at redhat.com>
Date: Mon Feb 10 16:45:27 2014 +0100
fdo#73363: sd: fix mis-detection of Visio files as PPT
SdFilterDetect::detect() erroneously detects all binary MSO files, and
because the Visio types would be checked after PPT, Visio is pre-empted.
Change-Id: I6ec3647a508dc8d79b47bfff6de35ccae39416ee
diff --git a/sd/source/ui/unoidl/sddetect.cxx b/sd/source/ui/unoidl/sddetect.cxx
index 31043ca..f962b9c 100644
--- a/sd/source/ui/unoidl/sddetect.cxx
+++ b/sd/source/ui/unoidl/sddetect.cxx
@@ -372,6 +372,10 @@ OUString SAL_CALL SdFilterDetect::detect( Sequence< beans::PropertyValue >& lDes
else
pFilter = SfxFilter::GetFilterByName( pFilterPowerPoint97);
}
+ else
+ {
+ pFilter = 0;
+ }
}
else
{
@@ -424,6 +428,10 @@ OUString SAL_CALL SdFilterDetect::detect( Sequence< beans::PropertyValue >& lDes
}
}
}
+ else
+ {
+ pFilter = 0;
+ }
}
}
More information about the Libreoffice-commits
mailing list