diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-01-30 16:06:21 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-01-30 16:06:21 +0000 |
commit | 6717cc723f0967215b20bb5aa8a2124738c8eb4d (patch) | |
tree | 685a3660e1d49c770a7b3112b65b7c2d85d4c6bb /svx/source | |
parent | 10aa61df3071f40c43735b8f8690cef0668bff03 (diff) |
#i10000# We get no 'using namespace std' any more, therefore use '::std::map' instead of 'map'.
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/fmcomp/trace.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/fmcomp/trace.cxx b/svx/source/fmcomp/trace.cxx index c4c93e847ad5..d26acedd6010 100644 --- a/svx/source/fmcomp/trace.cxx +++ b/svx/source/fmcomp/trace.cxx @@ -4,9 +4,9 @@ * * $RCSfile: trace.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: obo $ $Date: 2006-09-17 05:02:15 $ + * last change: $Author: rt $ $Date: 2008-01-30 17:06:21 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -49,7 +49,7 @@ //------------------------------------------------------------------------------ ::vos::OMutex Tracer::s_aMapSafety; -map< ::vos::OThread::TThreadIdentifier, INT32, ::std::less< ::vos::OThread::TThreadIdentifier > > +::std::map< ::vos::OThread::TThreadIdentifier, INT32, ::std::less< ::vos::OThread::TThreadIdentifier > > Tracer::s_aThreadIndents; //------------------------------------------------------------------------------ |