]> git.saurik.com Git - wxWidgets.git/commitdiff
Use static method for AddCatalogLookupPathPrefix instead of global function
authorRobin Dunn <robin@alldunn.com>
Fri, 19 Nov 2004 19:23:23 +0000 (19:23 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 19 Nov 2004 19:23:23 +0000 (19:23 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30638 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_intl_ex.py

index b58b4e936b273eb0c6c0c624981342fc206100d5..f572dd25494490560b048b7a2b00cbaa2311ff9b 100644 (file)
@@ -3,8 +3,8 @@
 # to the default catalog path.
 if wx.Platform == "__WXMSW__":
     import os
 # to the default catalog path.
 if wx.Platform == "__WXMSW__":
     import os
-    localedir = os.path.join(os.path.split(__file__)[0], "locale")
-    Locale_AddCatalogLookupPathPrefix(localedir)
+    _localedir = os.path.join(os.path.split(__file__)[0], "locale")
+    Locale.AddCatalogLookupPathPrefix(_localedir)
     del os
 
 #----------------------------------------------------------------------------
     del os
 
 #----------------------------------------------------------------------------