diff options
Diffstat (limited to 'macosx/plugins/DFInput')
| -rw-r--r-- | macosx/plugins/DFInput/en.lproj/Credits.rtf (renamed from macosx/plugins/DFInput/English.lproj/Credits.rtf) | 0 | ||||
| -rw-r--r--[-rwxr-xr-x] | macosx/plugins/DFInput/en.lproj/InfoPlist.strings (renamed from macosx/plugins/DFInput/English.lproj/InfoPlist.strings) | 0 | ||||
| -rwxr-xr-x | macosx/plugins/DFInput/macsrc/PadController.h | 9 | ||||
| -rwxr-xr-x | macosx/plugins/DFInput/macsrc/PadController.m | 3 |
4 files changed, 7 insertions, 5 deletions
diff --git a/macosx/plugins/DFInput/English.lproj/Credits.rtf b/macosx/plugins/DFInput/en.lproj/Credits.rtf index c03c2bb2..c03c2bb2 100644 --- a/macosx/plugins/DFInput/English.lproj/Credits.rtf +++ b/macosx/plugins/DFInput/en.lproj/Credits.rtf diff --git a/macosx/plugins/DFInput/English.lproj/InfoPlist.strings b/macosx/plugins/DFInput/en.lproj/InfoPlist.strings index 80f51efb..80f51efb 100755..100644 --- a/macosx/plugins/DFInput/English.lproj/InfoPlist.strings +++ b/macosx/plugins/DFInput/en.lproj/InfoPlist.strings diff --git a/macosx/plugins/DFInput/macsrc/PadController.h b/macosx/plugins/DFInput/macsrc/PadController.h index 4e56a206..62ad66f4 100755 --- a/macosx/plugins/DFInput/macsrc/PadController.h +++ b/macosx/plugins/DFInput/macsrc/PadController.h @@ -25,11 +25,10 @@ #import "PadView.h" @interface PadController : NSWindowController <NSWindowDelegate> -{ - IBOutlet PadView *controllerView; - IBOutlet id controllerView1; - IBOutlet id controllerView2; -} +@property (weak) IBOutlet PadView *controllerView; +@property (weak) IBOutlet id controllerView1; +@property (weak) IBOutlet id controllerView2; + - (IBAction)cancel:(id)sender; - (IBAction)ok:(id)sender; diff --git a/macosx/plugins/DFInput/macsrc/PadController.m b/macosx/plugins/DFInput/macsrc/PadController.m index 07030c4c..a848636f 100755 --- a/macosx/plugins/DFInput/macsrc/PadController.m +++ b/macosx/plugins/DFInput/macsrc/PadController.m @@ -394,6 +394,9 @@ long DoConfiguration() } @implementation PadController +@synthesize controllerView; +@synthesize controllerView1; +@synthesize controllerView2; - (IBAction)cancel:(id)sender { |
