diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-11-10 23:38:29 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-11-10 23:38:29 +0000 |
| commit | 5fb82849d7fa24ccbf29aa3f89a52645fbc5d580 (patch) | |
| tree | bbd4bedf12c4183311d123302da1015c0863497c /macosx/plugins/DFInput | |
| parent | a96ba176322566d9d15b51c714984affcdfc6355 (diff) | |
| download | pcsxr-5fb82849d7fa24ccbf29aa3f89a52645fbc5d580.tar.gz | |
OS X: Move the English localization files around.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@92229 e17a0e51-4ae3-4d35-97c3-1a29b211df97
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 { |
