diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-06-05 16:44:23 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-06-05 16:44:23 +0000 |
commit | 2a8f23963507714e4f6f5f64f402768b559409b6 (patch) | |
tree | 02619e57d30b859896b8b480051e8a99544bb559 /sw/source/ui | |
parent | d0ab640953bdb5b9e8ad71c12306093100377607 (diff) |
INTEGRATION: CWS bgdlremove (1.71.14); FILE MERGED
2007/05/21 12:04:41 kso 1.71.14.2: RESYNC: (1.71-1.72); FILE MERGED
2007/05/11 09:14:34 kso 1.71.14.1: #i76911# - ucbhelper lib no longer uses VOS.
(vos::ORef => rtl::Reference, vos::OMutex => osl::Mutex, ...)
Diffstat (limited to 'sw/source/ui')
-rw-r--r-- | sw/source/ui/uiview/view2.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/source/ui/uiview/view2.cxx b/sw/source/ui/uiview/view2.cxx index 2f76df37f51e..f5d82c47012b 100644 --- a/sw/source/ui/uiview/view2.cxx +++ b/sw/source/ui/uiview/view2.cxx @@ -4,9 +4,9 @@ * * $RCSfile: view2.cxx,v $ * - * $Revision: 1.72 $ + * $Revision: 1.73 $ * - * last change: $Author: kz $ $Date: 2007-05-10 16:25:57 $ + * last change: $Author: ihi $ $Date: 2007-06-05 17:44:23 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -455,8 +455,8 @@ BOOL SwView::InsertGraphicDlg( SfxRequest& rReq ) FileDialogHelper* pFileDlg = new FileDialogHelper( SFXWB_GRAPHIC | SFXWB_SHOWSTYLES ); pFileDlg->SetTitle(SW_RESSTR(STR_INSERT_GRAPHIC )); pFileDlg->SetContext( FileDialogHelper::SW_INSERT_GRAPHIC ); - Reference < XFilePicker > xFP = pFileDlg->GetFilePicker(); - Reference < XFilePickerControlAccess > xCtrlAcc(xFP, UNO_QUERY); + uno::Reference < XFilePicker > xFP = pFileDlg->GetFilePicker(); + uno::Reference < XFilePickerControlAccess > xCtrlAcc(xFP, UNO_QUERY); if(nHtmlMode & HTMLMODE_ON) { sal_Bool bTrue = sal_True; @@ -2146,7 +2146,7 @@ void SwView::EnableMailMerge(BOOL bEnable ) */ namespace { - sal_Bool lcl_NeedAdditionalDataSource( const Reference< XNameAccess >& _rDatasourceContext ) + sal_Bool lcl_NeedAdditionalDataSource( const uno::Reference< XNameAccess >& _rDatasourceContext ) { Sequence < OUString > aNames = _rDatasourceContext->getElementNames(); @@ -2218,13 +2218,13 @@ void SwView::GenerateFormLetter(BOOL bUseCurrentDocument) if(!GetWrtShell().IsAnyDatabaseFieldInDoc()) { //check availability of data sources (except biblio source) - Reference< XMultiServiceFactory > xMgr( ::comphelper::getProcessServiceFactory() ); - Reference<XNameAccess> xDBContext; + uno::Reference< XMultiServiceFactory > xMgr( ::comphelper::getProcessServiceFactory() ); + uno::Reference<XNameAccess> xDBContext; if( xMgr.is() ) { - Reference<XInterface> xInstance = xMgr->createInstance( + uno::Reference<XInterface> xInstance = xMgr->createInstance( OUString::createFromAscii( "com.sun.star.sdb.DatabaseContext" )); - xDBContext = Reference<XNameAccess>(xInstance, UNO_QUERY) ; + xDBContext = uno::Reference<XNameAccess>(xInstance, UNO_QUERY) ; } if(!xDBContext.is()) return ; |