summaryrefslogtreecommitdiff
path: root/unotools/source
diff options
context:
space:
mode:
authoravy <avy@openoffice.org>2001-08-23 14:15:18 +0000
committeravy <avy@openoffice.org>2001-08-23 14:15:18 +0000
commit66301b4d9b1617cdbb53a396d765a62fc3017254 (patch)
tree8c213efe9fde10784b4ad75419bb341c85ed8988 /unotools/source
parent85575af3af8141541e39437fe30185c021d06a24 (diff)
compiler error was checked
Diffstat (limited to 'unotools/source')
-rw-r--r--unotools/source/config/configvaluecontainer.cxx19
1 files changed, 14 insertions, 5 deletions
diff --git a/unotools/source/config/configvaluecontainer.cxx b/unotools/source/config/configvaluecontainer.cxx
index 055333c8d9d3..c2a0548be44b 100644
--- a/unotools/source/config/configvaluecontainer.cxx
+++ b/unotools/source/config/configvaluecontainer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: configvaluecontainer.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: fs $ $Date: 2001-08-21 12:53:30 $
+ * last change: $Author: avy $ $Date: 2001-08-23 15:15:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -165,7 +165,10 @@ namespace utl
//---------------------------------------------------------------------
//--- 20.08.01 17:42:17 -----------------------------------------------
- static void lcl_copyData( const NodeValueAccessor& _rAccessor, const Any& _rData, ::osl::Mutex& _rMutex )
+ #ifndef UNX
+ static
+ #endif
+ void lcl_copyData( const NodeValueAccessor& _rAccessor, const Any& _rData, ::osl::Mutex& _rMutex )
{
::osl::MutexGuard aGuard( _rMutex );
@@ -206,7 +209,10 @@ namespace utl
//---------------------------------------------------------------------
//--- 21.08.01 12:06:43 -----------------------------------------------
- static void lcl_copyData( Any& _rData, const NodeValueAccessor& _rAccessor, ::osl::Mutex& _rMutex )
+ #ifndef UNX
+ static
+ #endif
+ void lcl_copyData( Any& _rData, const NodeValueAccessor& _rAccessor, ::osl::Mutex& _rMutex )
{
::osl::MutexGuard aGuard( _rMutex );
@@ -257,7 +263,7 @@ namespace utl
void operator() ( NodeValueAccessor& _rAccessor )
{
- lcl_copyData( _rAccessor, m_rRootNode.getNodeValue( _rAccessor.getPath( ) ), m_rMutex );
+ ::utl::lcl_copyData( _rAccessor, m_rRootNode.getNodeValue( _rAccessor.getPath( ) ), m_rMutex );
}
};
@@ -482,6 +488,9 @@ namespace utl
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.1 2001/08/21 12:53:30 fs
+ * initial checkin - helper class for accesing config data in fixed memmory locations (aka class members)
+ *
*
* Revision 1.0 20.08.01 15:47:36 fs
************************************************************************/