summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-08-30 06:54:00 +0000
committerFrank Schönheit <fs@openoffice.org>2001-08-30 06:54:00 +0000
commit6deccf0ece66b1688210bab2baef4908bd69eb9d (patch)
tree8dcada6d0483f8c87d49e805b648ed1fef6e379e
parent737b915cca38ed112ad94c4f04468754b24afc67 (diff)
preparations for #90109# (renamed methods for more consistency
-rw-r--r--dbaccess/source/core/inc/commandbase.hxx12
-rw-r--r--dbaccess/source/core/inc/datasettings.hxx11
2 files changed, 10 insertions, 13 deletions
diff --git a/dbaccess/source/core/inc/commandbase.hxx b/dbaccess/source/core/inc/commandbase.hxx
index 1691240ab..2edd9c11f 100644
--- a/dbaccess/source/core/inc/commandbase.hxx
+++ b/dbaccess/source/core/inc/commandbase.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: commandbase.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: fs $ $Date: 2001-06-18 11:37:38 $
+ * last change: $Author: fs $ $Date: 2001-08-30 07:54:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,8 +62,8 @@
#ifndef _DBA_CORE_COMMANDBASE_HXX_
#define _DBA_CORE_COMMANDBASE_HXX_
-#ifndef _COM_SUN_STAR_REGISTRY_XREGISTRYKEY_HPP_
-#include <com/sun/star/registry/XRegistryKey.hpp>
+#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
+#include <com/sun/star/uno/Sequence.hxx>
#endif
namespace utl
@@ -99,12 +99,12 @@ protected:
/** store all configuration relevant informations under the given configuration node
@param _rConfigLocation the configuration node. must not be readonly
*/
- virtual void storeTo(const ::utl::OConfigurationNode& _rConfigLocation);
+ void storeTo(const ::utl::OConfigurationNode& _rConfigLocation);
/** initialize with the informations stored under the given configuration node
@param _rConfigLocation the configuration node.
*/
- virtual void initializeFrom(const ::utl::OConfigurationNode& _rConfigLocation);
+ void loadFrom(const ::utl::OConfigurationNode& _rConfigLocation);
};
//........................................................................
diff --git a/dbaccess/source/core/inc/datasettings.hxx b/dbaccess/source/core/inc/datasettings.hxx
index 464a81de1..4cdbd24eb 100644
--- a/dbaccess/source/core/inc/datasettings.hxx
+++ b/dbaccess/source/core/inc/datasettings.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: datasettings.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: fs $ $Date: 2001-06-18 11:37:38 $
+ * last change: $Author: fs $ $Date: 2001-08-30 07:54:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -74,9 +74,6 @@
#ifndef _COM_SUN_STAR_LANG_ILLEGALARGUMENTEXCEPTION_HPP_
#include <com/sun/star/lang/IllegalArgumentException.hpp>
#endif
-#ifndef _COM_SUN_STAR_REGISTRY_XREGISTRYKEY_HPP_
-#include <com/sun/star/registry/XRegistryKey.hpp>
-#endif
#ifndef _RTL_USTRING_HXX_
#include <rtl/ustring.hxx>
@@ -126,12 +123,12 @@ protected:
scheme for "DefinitionSettings" - which has yet to be defined :)
@param _rxConfigLocation the configuration node. must not be readonly
*/
- virtual void storeTo(const ::utl::OConfigurationNode& _rConfigLocation) const;
+ void storeTo(const ::utl::OConfigurationNode& _rConfigLocation) const;
/** load all configuration relevant informations from the given configuration node.
@param _rxConfigLocation the configuration node. must not be readonly
*/
- virtual void loadFrom(const ::utl::OConfigurationNode& _rConfigLocation);
+ void loadFrom(const ::utl::OConfigurationNode& _rConfigLocation);
};
//==========================================================================