diff options
author | Michael Stahl <mstahl@redhat.com> | 2011-11-30 16:08:22 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2011-12-03 00:48:12 +0100 |
commit | 434c1e313236997ef668853cf74be5fa611fb2be (patch) | |
tree | 9e89f2036f098f545f5ca2b35b8d10c916e121d5 /sfx2/source | |
parent | 1274babb68e9dc09747ac54ea19421af839db92a (diff) |
sfx2::FileDialogHelper ignores WB_3DLOOK, WB_STDMODAL
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/appl/fileobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/appl/fileobj.cxx b/sfx2/source/appl/fileobj.cxx index d5d63484b89d..e3b12c5a16d4 100644 --- a/sfx2/source/appl/fileobj.cxx +++ b/sfx2/source/appl/fileobj.cxx @@ -472,7 +472,7 @@ void SvFileObject::Edit( Window* pParent, sfx2::SvBaseLink* pLink, const Link& r Application::SetDefDialogParent( pParent ); ::sfx2::FileDialogHelper* pFileDlg = - pLink->GetFileDialog( (SFXWB_INSERT | WB_3DLOOK), String() ); + pLink->GetFileDialog( SFXWB_INSERT, String() ); pFileDlg->StartExecuteModal( LINK( this, SvFileObject, DialogClosedHdl ) ); } break; @@ -489,7 +489,7 @@ void SvFileObject::Edit( Window* pParent, sfx2::SvBaseLink* pLink, const Link& r sFactory = pShell->GetFactory().GetFactoryName(); ::sfx2::FileDialogHelper* pFileDlg = - pLink->GetFileDialog( (SFXWB_INSERT | WB_3DLOOK), sFactory ); + pLink->GetFileDialog( SFXWB_INSERT, sFactory ); pFileDlg->StartExecuteModal( LINK( this, SvFileObject, DialogClosedHdl ) ); } break; |