summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2011-11-15 23:53:00 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2011-11-16 00:43:11 +0900
commitdfd08cdf16e5b46b05dadb5fb3a2b32349ec5df5 (patch)
tree3e72cd620b9c5175853c0f587a330afd66b38d2b /vbahelper
parenta8b0407fef14cd89e3eb571c88ce3cb9edf70149 (diff)
replaced String in SfxPickList with rtl::OUString
this consists of 12df49396e6bcb07bafc95255a8526caac96e60a and related changes
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/inc/vbahelper/vbaaccesshelper.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vbahelper/inc/vbahelper/vbaaccesshelper.hxx b/vbahelper/inc/vbahelper/vbaaccesshelper.hxx
index 85a109b5f0ac..01a520c33f83 100644
--- a/vbahelper/inc/vbahelper/vbaaccesshelper.hxx
+++ b/vbahelper/inc/vbahelper/vbaaccesshelper.hxx
@@ -65,7 +65,7 @@ namespace ooo
bool bRes( false );
const SfxFilter *pFilt = rDocShell.GetMedium()->GetFilter();
if ( pFilt && pFilt->IsAlienFormat() )
- bRes = ( pFilt->GetMimeType().CompareToAscii( pMimeType ) == 0 );
+ bRes = ( pFilt->GetMimeType().compareToAscii( pMimeType ) == 0 );
return bRes;
}
VBAHELPER_DLLPRIVATE inline bool isAlienExcelDoc( SfxObjectShell& rDocShell ) { return isAlienDoc( rDocShell, "application/vnd.ms-excel" ); }