summaryrefslogtreecommitdiff
path: root/macosx/PluginController.m
diff options
context:
space:
mode:
authorSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-06-08 09:27:25 +0000
committerSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-06-08 09:27:25 +0000
commit5f868fa161d5827e45a060a0b17b44a997625315 (patch)
tree1694ae3dfcb0189abdf098edbf6dae0bf2a18e4d /macosx/PluginController.m
parentc7eb23ccf1813fb4ca47c309c40baff308151237 (diff)
downloadpcsxr-5f868fa161d5827e45a060a0b17b44a997625315.tar.gz
Rebranding.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@67621 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/PluginController.m')
-rw-r--r--macosx/PluginController.m12
1 files changed, 6 insertions, 6 deletions
diff --git a/macosx/PluginController.m b/macosx/PluginController.m
index 4bd5e4aa..d9858fae 100644
--- a/macosx/PluginController.m
+++ b/macosx/PluginController.m
@@ -1,18 +1,18 @@
#import "PluginController.h"
-#import "PcsxPlugin.h"
-#import "PcsxController.h"
+#import "PcsxrPlugin.h"
+#import "PcsxrController.h"
@implementation PluginController
- (IBAction)doAbout:(id)sender
{
- PcsxPlugin *plugin = [plugins objectAtIndex:[pluginMenu indexOfSelectedItem]];
+ PcsxrPlugin *plugin = [plugins objectAtIndex:[pluginMenu indexOfSelectedItem]];
[plugin aboutAs:pluginType];
}
- (IBAction)doConfigure:(id)sender
{
- PcsxPlugin *plugin = [plugins objectAtIndex:[pluginMenu indexOfSelectedItem]];
+ PcsxrPlugin *plugin = [plugins objectAtIndex:[pluginMenu indexOfSelectedItem]];
[plugin configureAs:pluginType];
}
@@ -22,7 +22,7 @@
if (sender==pluginMenu) {
int index = [pluginMenu indexOfSelectedItem];
if (index != -1) {
- PcsxPlugin *plugin = [plugins objectAtIndex:index];
+ PcsxrPlugin *plugin = [plugins objectAtIndex:index];
if (![[PluginList list] setActivePlugin:plugin forType:pluginType]) {
/* plugin won't initialize */
@@ -51,7 +51,7 @@
// remember the list
pluginType = type;
plugins = [list retain];
- defaultKey = [[PcsxPlugin getDefaultKeyForType:pluginType] retain];
+ defaultKey = [[PcsxrPlugin getDefaultKeyForType:pluginType] retain];
// clear the previous menu items
[pluginMenu removeAllItems];