diff dwtx/jface/bindings/keys/formatting/AbstractKeyFormatter.d @ 39:644f1334b451

fix anon classes
author Frank Benoit <benoit@tionex.de>
date Tue, 08 Apr 2008 22:05:42 +0200
parents e0f0aaf75edd
children 7a3e6c1a4eae
line wrap: on
line diff
--- a/dwtx/jface/bindings/keys/formatting/AbstractKeyFormatter.d	Sun Apr 06 14:15:58 2008 +0200
+++ b/dwtx/jface/bindings/keys/formatting/AbstractKeyFormatter.d	Tue Apr 08 22:05:42 2008 +0200
@@ -72,7 +72,8 @@
     private static const Set!(String) resourceBundleKeys;
 
     static this() {
-        RESOURCE_BUNDLE = ResourceBundle.getBundle(AbstractKeyFormatter.classinfo.name);
+        RESOURCE_BUNDLE = ResourceBundle.getBundle(
+            import("dwtx.jface.bindings.keys.formatting.AbstractKeyFormatter.properties"));
         resourceBundleKeys = new HashSet!(String);
         foreach( key; RESOURCE_BUNDLE.getKeys()){
             resourceBundleKeys.add(key);