summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2000-10-05 07:56:00 +0000
committerFrank Schönheit <fs@openoffice.org>2000-10-05 07:56:00 +0000
commite55168ff5e5995d7dd65146a144db5293dd98cdf (patch)
tree85394f34a0a075d1e3dd2dfec4fd7b7b29b9777e /connectivity
parentc2f9f128f6397f79ced26c90c26915d090196cc5 (diff)
using comphelper::OPropertyContainer instead of connectivity::OSimplePropertyContainer
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/inc/connectivity/sdbcx/VDescriptor.hxx12
-rw-r--r--connectivity/inc/connectivity/sdbcx/VGroup.hxx8
2 files changed, 10 insertions, 10 deletions
diff --git a/connectivity/inc/connectivity/sdbcx/VDescriptor.hxx b/connectivity/inc/connectivity/sdbcx/VDescriptor.hxx
index 673e3440ec46..218485309a97 100644
--- a/connectivity/inc/connectivity/sdbcx/VDescriptor.hxx
+++ b/connectivity/inc/connectivity/sdbcx/VDescriptor.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: VDescriptor.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:14:19 $
+ * last change: $Author: fs $ $Date: 2000-10-05 08:56:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,8 +62,8 @@
#ifndef _CONNECTIVITY_SDBCX_DESCRIPTOR_HXX_
#define _CONNECTIVITY_SDBCX_DESCRIPTOR_HXX_
-#ifndef _CONNECTIVITY_SIMPLEPROPERTYCONTAINER_HXX_
-#include "connectivity/simplepropertycontainer.hxx"
+#ifndef _COMPHELPER_PROPERTYCONTAINER_HXX_
+#include <comphelper/propertycontainer.hxx>
#endif
#ifndef _COM_SUN_STAR_BEANS_PROPERTYATTRIBUTE_HPP_
#include <com/sun/star/beans/PropertyAttribute.hpp>
@@ -80,7 +80,7 @@ namespace connectivity
{
namespace sdbcx
{
- class ODescriptor : public connectivity::OSimplePropertyContainer
+ class ODescriptor : public ::comphelper::OPropertyContainer
{
protected:
::rtl::OUString m_Name;
@@ -90,7 +90,7 @@ namespace connectivity
public:
ODescriptor(::cppu::OBroadcastHelper& _rBHelper,sal_Bool _bCase, sal_Bool _bNew = sal_False)
- : connectivity::OSimplePropertyContainer(_rBHelper)
+ : ::comphelper::OPropertyContainer(_rBHelper)
, m_bNew(_bNew),m_aCase(_bCase){}
sal_Bool isNew() const { return m_bNew; }
diff --git a/connectivity/inc/connectivity/sdbcx/VGroup.hxx b/connectivity/inc/connectivity/sdbcx/VGroup.hxx
index 97a4d055cb49..5962288cc179 100644
--- a/connectivity/inc/connectivity/sdbcx/VGroup.hxx
+++ b/connectivity/inc/connectivity/sdbcx/VGroup.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: VGroup.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:14:19 $
+ * last change: $Author: fs $ $Date: 2000-10-05 08:56:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -88,8 +88,8 @@
#ifndef _CONNECTIVITY_SDBCX_COLLECTION_HXX_
#include "connectivity/sdbcx/VCollection.hxx"
#endif
-#ifndef _CONNECTIVITY_SIMPLEPROPERTYCONTAINER_HXX_
-#include "connectivity/simplepropertycontainer.hxx"
+#ifndef _COMPHELPER_PROPERTYCONTAINER_HXX_
+#include <comphelper/propertycontainer.hxx>
#endif
#ifndef _CONNECTIVITY_SDBCX_IREFRESHABLE_HXX_
#include "connectivity/sdbcx/IRefreshable.hxx"