summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-06-05 13:34:02 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-06-05 13:34:02 +0000
commit4263133fc6ff183093955add08e40215dadd4534 (patch)
tree83b7aabb9033021de3e51fe4d5a0f6d8a2bd8569 /svx
parent4df0d4dc2f460a496888182953e0726634df0ad4 (diff)
INTEGRATION: CWS bgdlremove (1.19.338); FILE MERGED
2007/05/11 09:12:33 kso 1.19.338.1: #i76911# - ucbhelper lib no longer uses VOS. (vos::ORef => rtl::Reference, vos::OMutex => osl::Mutex, ...)
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/opengrf.cxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/svx/source/dialog/opengrf.cxx b/svx/source/dialog/opengrf.cxx
index bb076204015f..0dbad0e6f8c8 100644
--- a/svx/source/dialog/opengrf.cxx
+++ b/svx/source/dialog/opengrf.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: opengrf.cxx,v $
*
- * $Revision: 1.19 $
+ * $Revision: 1.20 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 04:28:51 $
+ * last change: $Author: ihi $ $Date: 2007-06-05 14:34:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -126,6 +126,7 @@
//-----------------------------------------------------------------------------
+using namespace ::com::sun::star;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::ui::dialogs;
using namespace ::com::sun::star::uno;
@@ -159,15 +160,15 @@ struct SvxOpenGrf_Impl
SvxOpenGrf_Impl ();
sfx2::FileDialogHelper aFileDlg;
- Reference < XFilePickerControlAccess > xCtrlAcc;
+ uno::Reference < XFilePickerControlAccess > xCtrlAcc;
};
SvxOpenGrf_Impl::SvxOpenGrf_Impl() :
aFileDlg(SFXWB_GRAPHIC)
{
- Reference < XFilePicker > xFP = aFileDlg.GetFilePicker();
- xCtrlAcc = Reference < XFilePickerControlAccess >(xFP, UNO_QUERY);
+ uno::Reference < XFilePicker > xFP = aFileDlg.GetFilePicker();
+ xCtrlAcc = uno::Reference < XFilePickerControlAccess >(xFP, UNO_QUERY);
}