tools/inc/tools/pstm.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit aa96767c558a5393a5634355d61bd6cc56601a89
Author: Michael Stahl <[email protected]>
Date:   Wed Aug 8 15:07:58 2012 +0200

    fix MSVC build
    
    Change-Id: I7757f9c8ff98330b9168ee3c75e497a300f14124

diff --git a/tools/inc/tools/pstm.hxx b/tools/inc/tools/pstm.hxx
index 1cb882a..c74c108 100644
--- a/tools/inc/tools/pstm.hxx
+++ b/tools/inc/tools/pstm.hxx
@@ -136,14 +136,14 @@ public:
 };
 
 template<typename T>
-TOOLS_DLLPUBLIC SvPersistStream& operator << (SvPersistStream &rStm, const 
SvDeclPersistList<T> &rLst)
+SvPersistStream& operator << (SvPersistStream &rStm, const 
SvDeclPersistList<T> &rLst)
 {
     WritePersistListObjects( rLst, rStm );
     return rStm;
 };
 
 template<typename T>
-TOOLS_DLLPUBLIC SvPersistStream& operator >> (SvPersistStream &rStm, 
SvDeclPersistList<T> &rLst)
+SvPersistStream& operator >> (SvPersistStream &rStm, SvDeclPersistList<T> 
&rLst)
 {
     ReadObjects( rLst, rStm );
     return rStm;
_______________________________________________
Libreoffice-commits mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to