diff options
author | Ocke Janssen <oj@openoffice.org> | 2001-05-02 11:47:51 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2001-05-02 11:47:51 +0000 |
commit | b551c7c73bafaadcc1dba3494dda1f0c041ef5be (patch) | |
tree | 22fbffc64ca721881497bb061ef37f89e78fd8bb /dbaccess/source/core/inc/column.hxx | |
parent | a3371f4892d5c6158386453329e49e0becda8430 (diff) |
some changes for ref vector
Diffstat (limited to 'dbaccess/source/core/inc/column.hxx')
-rw-r--r-- | dbaccess/source/core/inc/column.hxx | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/dbaccess/source/core/inc/column.hxx b/dbaccess/source/core/inc/column.hxx index b240b9f74..e4fbf476b 100644 --- a/dbaccess/source/core/inc/column.hxx +++ b/dbaccess/source/core/inc/column.hxx @@ -2,9 +2,9 @@ * * $RCSfile: column.hxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: oj $ $Date: 2001-04-23 10:07:41 $ + * last change: $Author: oj $ $Date: 2001-05-02 12:47:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -205,21 +205,15 @@ namespace dbaccess virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException); // XNamed - virtual ::rtl::OUString SAL_CALL getName( ) throw(::com::sun::star::uno::RuntimeException) - { - return m_sName; - } - virtual void SAL_CALL setName( const ::rtl::OUString& _rName ) throw(::com::sun::star::uno::RuntimeException) - { - m_sName = _rName; - } + virtual ::rtl::OUString SAL_CALL getName( ) throw(::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL setName( const ::rtl::OUString& _rName ) throw(::com::sun::star::uno::RuntimeException); /** return a pointer to the object which holds the UI-settings for this column, if any. @see OColumnSettings @see OColumns::loadSettings */ - virtual OColumnSettings* getSettings() { return NULL; } - virtual void fireValueChange(const ::com::sun::star::uno::Any& _rOldValue){} + virtual OColumnSettings* getSettings(); + virtual void fireValueChange(const ::com::sun::star::uno::Any& _rOldValue); }; //************************************************************ |