INTEGRATION: CWS sb88 (1.7.10); FILE MERGED
2008/06/03 15:29:47 sb 1.7.10.1: #i89553 applied patch by cmc
This commit is contained in:
parent
dd3fd4d564
commit
97bddf1ec9
3 changed files with 5 additions and 18 deletions
|
@ -7,7 +7,7 @@
|
|||
* OpenOffice.org - a multi-platform office productivity suite
|
||||
*
|
||||
* $RCSfile: binarywritehandler.hxx,v $
|
||||
* $Revision: 1.7 $
|
||||
* $Revision: 1.8 $
|
||||
*
|
||||
* This file is part of OpenOffice.org.
|
||||
*
|
||||
|
@ -109,9 +109,6 @@ namespace configmgr
|
|||
void writeStop()
|
||||
SAL_THROW( (io::IOException, uno::RuntimeException) );
|
||||
|
||||
void writeType(uno::Type const& _aType)
|
||||
SAL_THROW( (io::IOException, uno::RuntimeException) );
|
||||
|
||||
void writeValue( uno::Any const& _aValue)
|
||||
SAL_THROW( (io::IOException, uno::RuntimeException) );
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* OpenOffice.org - a multi-platform office productivity suite
|
||||
*
|
||||
* $RCSfile: layerupdatemerger.hxx,v $
|
||||
* $Revision: 1.7 $
|
||||
* $Revision: 1.8 $
|
||||
*
|
||||
* This file is part of OpenOffice.org.
|
||||
*
|
||||
|
@ -120,7 +120,6 @@ namespace configmgr
|
|||
virtual void flushUpdate();
|
||||
private:
|
||||
void malformedUpdate(sal_Char const * pMsg);
|
||||
void illegalUpdate(sal_Char const * pMsg);
|
||||
private:
|
||||
LayerUpdate m_aLayerUpdate;
|
||||
NodeUpdateRef m_xCurrentNode;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* OpenOffice.org - a multi-platform office productivity suite
|
||||
*
|
||||
* $RCSfile: anynoderef.hxx,v $
|
||||
* $Revision: 1.7 $
|
||||
* $Revision: 1.8 $
|
||||
*
|
||||
* This file is part of OpenOffice.org.
|
||||
*
|
||||
|
@ -101,8 +101,9 @@ namespace configmgr
|
|||
friend class TreeImplHelper;
|
||||
AnyNodeRef(NodeOffset nParentPos, TreeDepth m_nDepth);
|
||||
AnyNodeRef(Name const& aName, NodeOffset nParentPos);
|
||||
|
||||
#if OSL_DEBUG_LEVEL > 0
|
||||
bool checkValidState() const;
|
||||
#endif
|
||||
private:
|
||||
Name m_sNodeName;
|
||||
NodeOffset m_nUsedPos;
|
||||
|
@ -110,16 +111,6 @@ namespace configmgr
|
|||
};
|
||||
//-------------------------------------------------------------------------
|
||||
|
||||
/** checks whether there are any immediate children of <var>aNode</var> (which is in <var>aTree</var>)
|
||||
|
||||
@return
|
||||
<TRUE/> if a child node exists
|
||||
<FALSE/> otherwise
|
||||
*/
|
||||
inline
|
||||
bool hasChildOrElement(Tree const& aTree, AnyNodeRef const& aNode)
|
||||
{ return aNode.isNode() && hasChildOrElement(aTree,aNode.toNode()); }
|
||||
|
||||
/** checks whether there is an immediate child of <var>aNode</var> (which is in <var>aTree</var>)
|
||||
specified by <var>aName</var>
|
||||
|
||||
|
|
Loading…
Reference in a new issue