Changed mutex reference to a mutex pointer to avoid problems with wrappers

This commit is contained in:
Robert Osfield
2007-08-31 20:30:45 +00:00
parent 76063a94bd
commit 13faad13e8
3 changed files with 6 additions and 6 deletions

View File

@@ -164,7 +164,7 @@ public:
typedef OpenThreads::Mutex FontMutex;
/** Get the mutex that enables the serialization of calls to this font.*/
FontMutex& getSerializeFontCallsMutex() const { return _serializeFontCallsMutex; }
FontMutex* getSerializeFontCallsMutex() const { return &_serializeFontCallsMutex; }
protected: