diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-15 12:22:54 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-25 17:54:56 -0500 |
commit | 25ecc1fd1a876ab54f7be2e3ea0c8840842df079 (patch) | |
tree | 69a3ba2b609331e2523e4d10c4ec0b6013f2f03e /dbaccess/source/ui/inc/ConnectionLineData.hxx | |
parent | 8f1eae5b7434253a0ef098b8cb8963ed17af3030 (diff) |
merge vosremoval-reference.diff
Diffstat (limited to 'dbaccess/source/ui/inc/ConnectionLineData.hxx')
-rw-r--r-- | dbaccess/source/ui/inc/ConnectionLineData.hxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/dbaccess/source/ui/inc/ConnectionLineData.hxx b/dbaccess/source/ui/inc/ConnectionLineData.hxx index 7fb7c51e84ce..42c1f8969daa 100644 --- a/dbaccess/source/ui/inc/ConnectionLineData.hxx +++ b/dbaccess/source/ui/inc/ConnectionLineData.hxx @@ -28,11 +28,10 @@ #define DBAUI_CONNECTIONLINEDATA_HXX #include "QEnumTypes.hxx" -#include <vos/refernce.hxx> #include <vector> -#include <vos/ref.hxx> - +#include <rtl/ref.hxx> +#include <salhelper/simplereferenceobject.hxx> #include "RefFunctor.hxx" #include <rtl/ustring.hxx> @@ -52,7 +51,7 @@ namespace dbaui the class OConnectionLineData contains the data of a connection e.g. the source and the destanation field **/ - class OConnectionLineData : public ::vos::OReference + class OConnectionLineData : public ::salhelper::SimpleReferenceObject { ::rtl::OUString m_aSourceFieldName; ::rtl::OUString m_aDestFieldName; @@ -94,7 +93,7 @@ namespace dbaui //------------------------------------------------------------------------- //------------------------------------------------------------------ - typedef ::vos::ORef< OConnectionLineData > OConnectionLineDataRef; + typedef ::rtl::Reference< OConnectionLineData > OConnectionLineDataRef; typedef ::std::vector< OConnectionLineDataRef > OConnectionLineDataVec; } #endif // DBAUI_CONNECTIONLINEDATA_HXX |