diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-01-19 16:52:58 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-01-19 16:52:58 +0000 |
commit | ab456a33225d8437603ec5f5a9d17631ece1ff56 (patch) | |
tree | c7bdc97f71b4f48f1f202967e68d1fd07c57aec2 /configmgr | |
parent | c257a32343c53e58107052dd51fe58df8d167f56 (diff) |
INTEGRATION: CWS gcc41 (1.6.22); FILE MERGED
2005/12/07 12:37:42 pmladek 1.6.22.1: #i58967#
Removed extra qualification to fix build with gcc-4.1
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/backend/binaryreadhandler.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/configmgr/source/backend/binaryreadhandler.hxx b/configmgr/source/backend/binaryreadhandler.hxx index 03b75bcbaf21..3a7812508f14 100644 --- a/configmgr/source/backend/binaryreadhandler.hxx +++ b/configmgr/source/backend/binaryreadhandler.hxx @@ -4,9 +4,9 @@ * * $RCSfile: binaryreadhandler.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: rt $ $Date: 2005-09-08 03:26:54 $ + * last change: $Author: obo $ $Date: 2006-01-19 17:52:58 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -132,26 +132,26 @@ namespace configmgr void readChildNodes(ISubtree & rSubTree) SAL_THROW( (io::IOException, uno::RuntimeException) ); - binary::NodeType::Type BinaryReadHandler::readNodeType() + binary::NodeType::Type readNodeType() SAL_THROW( (io::IOException, uno::RuntimeException) ); - binary::ValueFlags::Type BinaryReadHandler::readValueFlags(bool& bSeq, bool& hasValue, bool& hasDefault ) + binary::ValueFlags::Type readValueFlags(bool& bSeq, bool& hasValue, bool& hasDefault ) SAL_THROW( (io::IOException, uno::RuntimeException) ); - void BinaryReadHandler::readString(rtl::OUString &_aString) + void readString(rtl::OUString &_aString) SAL_THROW( (io::IOException, uno::RuntimeException) ); - void BinaryReadHandler::readAttributes(node::Attributes &_aAttributes) + void readAttributes(node::Attributes &_aAttributes) SAL_THROW( (io::IOException, uno::RuntimeException) ); - void BinaryReadHandler::readGroup(rtl::OUString &_aName, node::Attributes &_aAttributes) + void readGroup(rtl::OUString &_aName, node::Attributes &_aAttributes) SAL_THROW( (io::IOException, uno::RuntimeException) ); - void BinaryReadHandler::readSet(rtl::OUString &_aName, node::Attributes &_aAttributes, + void readSet(rtl::OUString &_aName, node::Attributes &_aAttributes, rtl::OUString &_sInstanceName, rtl::OUString &_sInstanceModule) SAL_THROW( (io::IOException, uno::RuntimeException) ); - void BinaryReadHandler::readValue(rtl::OUString &_aName, node::Attributes &_aAttributes, + void readValue(rtl::OUString &_aName, node::Attributes &_aAttributes, uno::Any& _aValue, uno::Any& _aDefaultValue,uno::Type& _aType) SAL_THROW( (io::IOException, uno::RuntimeException) ); |