[Libreoffice-commits] .: Branch 'ooo-build-3-2-1' - patches/dev300
Muthu Subramanian
sumuthu at kemper.freedesktop.org
Tue Dec 14 03:19:30 PST 2010
patches/dev300/sc-xml-with-xls-ext.diff | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 1e19789057fd9f5661f2a9d30fb2704d23268b1b
Author: Muthu Subramanian K <sumuthu at novell.com>
Date: Tue Dec 14 16:42:35 2010 +0530
Fixed brackets problem. n#657730
diff --git a/patches/dev300/sc-xml-with-xls-ext.diff b/patches/dev300/sc-xml-with-xls-ext.diff
index 548fe61..84f7518 100644
--- a/patches/dev300/sc-xml-with-xls-ext.diff
+++ b/patches/dev300/sc-xml-with-xls-ext.diff
@@ -32,8 +32,8 @@
+ bool bIsXLS = false;
SvStream* pStream = aMedium.GetInStream();
const SfxFilter* pPreselectedFilter = pFilter;
-+ if ( ( pPreselectedFilter && pPreselectedFilter->GetName().SearchAscii("Excel") != STRING_NOTFOUND ) ||
-+ ( !aPreselectedFilterName.Len() && pPreselectedFilter->GetFilterName().EqualsAscii( pFilterAscii ) ) )
++ if ( pPreselectedFilter && ( ( pPreselectedFilter->GetName().SearchAscii("Excel") != STRING_NOTFOUND ) ||
++ ( !aPreselectedFilterName.Len() && pPreselectedFilter->GetFilterName().EqualsAscii( pFilterAscii ) ) ) )
+ bIsXLS = true;
pFilter = 0;
if ( pStream )
More information about the Libreoffice-commits
mailing list