summaryrefslogtreecommitdiff
path: root/wx+/image_resources.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/image_resources.cpp')
-rw-r--r--wx+/image_resources.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/wx+/image_resources.cpp b/wx+/image_resources.cpp
index ba725d63..09a34de0 100644
--- a/wx+/image_resources.cpp
+++ b/wx+/image_resources.cpp
@@ -41,6 +41,7 @@ class GlobalResources
public:
static GlobalResources& instance()
{
+ //caveat: function scope static initialization is not thread-safe in VS 2010! => but we wouldn't use wxWidgets in combination with multithreading anyway!
static GlobalResources inst;
return inst;
}
bgstack15