summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2014-08-11 17:11:10 +0200
committerDavid Tardon <dtardon@redhat.com>2014-08-11 20:59:12 +0200
commitd59d073186f0d2c646d742575aa2421388356c2d (patch)
treed9d363ae5dd60e2b5c1c4fd994d7303887910fdc /desktop
parent8c23a767d926d8d08213f5e2f8e81775c653cbd7 (diff)
nDont = SFX_FILTER_NOTINSTALLED looks more reasonable
Change-Id: Ic23abcfe5cdec9c8f2442cf778b365ea42b8e553
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/dispatchwatcher.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/dispatchwatcher.cxx b/desktop/source/app/dispatchwatcher.cxx
index 294d54382f2a..4ecd461a8591 100644
--- a/desktop/source/app/dispatchwatcher.cxx
+++ b/desktop/source/app/dispatchwatcher.cxx
@@ -88,11 +88,11 @@ static OUString impl_GetFilterFromExt( const OUString& aUrl, SfxFilterFlags nFla
const SfxFilter *pSfxFilter = NULL;
if( nFlags == SFX_FILTER_EXPORT )
{
- SfxFilterMatcher( aAppl ).GuessFilterIgnoringContent( *pMedium, &pSfxFilter, nFlags, 0 );
+ SfxFilterMatcher( aAppl ).GuessFilterIgnoringContent( *pMedium, &pSfxFilter, nFlags );
}
else
{
- SfxGetpApp()->GetFilterMatcher().GuessFilter( *pMedium, &pSfxFilter, nFlags, 0 );
+ SfxGetpApp()->GetFilterMatcher().GuessFilter( *pMedium, &pSfxFilter, nFlags );
}
if( pSfxFilter )