]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/stdpbase.cpp
Improve translations lookup logging.
[wxWidgets.git] / src / common / stdpbase.cpp
index e421f3b26a3da97aa27dba1a1ece6f34b12f6aee..1d831afed36c9e46e696df61350668bf0443dc9d 100644 (file)
 // module globals
 // ----------------------------------------------------------------------------
 
-static wxStandardPaths gs_stdPaths;
+namespace
+{
+
+// Derive a class just to be able to create it: wxStandardPaths ctor is
+// protected to prevent its misuse, but it also means we can't create an object
+// of this class directly.
+class wxStandardPathsDefault : public wxStandardPaths
+{
+public:
+    wxStandardPathsDefault() { }
+};
+
+static wxStandardPathsDefault gs_stdPaths;
+
+} // anonymous namespace
 
 // ============================================================================
 // implementation