summaryrefslogtreecommitdiff
path: root/sfx2/source/doc/guisaveas.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/doc/guisaveas.cxx')
-rw-r--r--sfx2/source/doc/guisaveas.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/doc/guisaveas.cxx b/sfx2/source/doc/guisaveas.cxx
index 1922cad4c5b7..6ee6c0f18b47 100644
--- a/sfx2/source/doc/guisaveas.cxx
+++ b/sfx2/source/doc/guisaveas.cxx
@@ -665,7 +665,7 @@ sal_Int8 ModelData_Impl::CheckSaveAcceptable( sal_Int8 nCurStatus )
&& GetMediaDescr().find( aVersionCommentString ) == GetMediaDescr().end() )
{
// notify the user that SaveAs is going to be done
- Window* pWin = SfxStoringHelper::GetModelWindow( m_xModel );
+ vcl::Window* pWin = SfxStoringHelper::GetModelWindow( m_xModel );
MessageDialog aMessageBox(pWin, SfxResId(STR_NEW_FILENAME_SAVE),
VCL_MESSAGE_QUESTION, VCL_BUTTONS_OK_CANCEL);
if ( aMessageBox.Execute() == RET_OK )
@@ -1855,15 +1855,15 @@ bool SfxStoringHelper::WarnUnacceptableFormat( const uno::Reference< frame::XMod
if ( !SvtSaveOptions().IsWarnAlienFormat() )
return true;
- Window* pWin = SfxStoringHelper::GetModelWindow( xModel );
+ vcl::Window* pWin = SfxStoringHelper::GetModelWindow( xModel );
SfxAlienWarningDialog aDlg( pWin, aOldUIName );
return aDlg.Execute() == RET_OK;
}
-Window* SfxStoringHelper::GetModelWindow( const uno::Reference< frame::XModel >& xModel )
+vcl::Window* SfxStoringHelper::GetModelWindow( const uno::Reference< frame::XModel >& xModel )
{
- Window* pWin = 0;
+ vcl::Window* pWin = 0;
try {
if ( xModel.is() )
{