[Libreoffice-commits] core.git: sw/source

Miklos Vajna vmiklos at collabora.co.uk
Wed Nov 4 00:17:06 PST 2015


 sw/source/core/inc/swcache.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 0d4460e8be0672119bcd8f14671e5fbf08f73194
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Wed Nov 4 09:16:19 2015 +0100

    sw: fix non-dbgutil build
    
    Change-Id: I2b521c516caf85892dafe782da79364a534d55a2

diff --git a/sw/source/core/inc/swcache.hxx b/sw/source/core/inc/swcache.hxx
index 1fa3093..cab9192 100644
--- a/sw/source/core/inc/swcache.hxx
+++ b/sw/source/core/inc/swcache.hxx
@@ -169,8 +169,8 @@ public:
     void Lock();
     void Unlock();
 #else
-    inline void Lock() { ++nLock; }
-    inline void Unlock() { --nLock; }
+    inline void Lock() { ++m_nLock; }
+    inline void Unlock() { --m_nLock; }
 #endif
 };
 


More information about the Libreoffice-commits mailing list