summaryrefslogtreecommitdiff
path: root/salhelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-02-23 20:19:20 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-02-23 20:19:44 +0100
commit2d15260688aca175b5ce19d6b65cacf177c14532 (patch)
tree66ed6ee6eb256f0b23701c82a0e05a6bcacd29c6 /salhelper
parentbad98a1aa71e1a76c6ca4033f82168fe5b098b64 (diff)
Fix comment
Diffstat (limited to 'salhelper')
-rw-r--r--salhelper/inc/salhelper/thread.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/salhelper/inc/salhelper/thread.hxx b/salhelper/inc/salhelper/thread.hxx
index 84d37327a4df..2b657b3ab6e3 100644
--- a/salhelper/inc/salhelper/thread.hxx
+++ b/salhelper/inc/salhelper/thread.hxx
@@ -74,8 +74,10 @@ public:
using osl::Thread::terminate;
// While the below static member functions should arguably always be called
- // with qualified (osl::Thread) names, at least MSVC still would complain
- // that they are inaccessible from within derivations of salhelper::Thread:
+ // with qualified (osl::Thread) names, compilers would still complain that
+ // they are inaccessible from within derivations of salhelper::Thread (an
+ // alternative would be to force such derivations to use global names,
+ // prefixed with ::osl::Thread):
using osl::Thread::getCurrentIdentifier;
using osl::Thread::wait;
using osl::Thread::yield;