aboutsummaryrefslogtreecommitdiffstats
path: root/MCPKit_bundled.framework/Headers/MCPConnectionWinCont.h
diff options
context:
space:
mode:
authoravenjamin <avenjamin@gmail.com>2008-09-12 07:04:38 +0000
committeravenjamin <avenjamin@gmail.com>2008-09-12 07:04:38 +0000
commit465a98e582d2b2a92f15ef995dcf98a8b6b393de (patch)
treeeeccc52cea8d34ac3a5c363dd8ea51ba6dfbb5a4 /MCPKit_bundled.framework/Headers/MCPConnectionWinCont.h
parent443506099b3073409f966e8e973cb800e4316bfc (diff)
downloadsequelpro-465a98e582d2b2a92f15ef995dcf98a8b6b393de.tar.gz
sequelpro-465a98e582d2b2a92f15ef995dcf98a8b6b393de.tar.bz2
sequelpro-465a98e582d2b2a92f15ef995dcf98a8b6b393de.zip
Attempting to fix an issue with this framework and it's containing symlinks.
Removing it all together and re-adding it. See following commit for further info.
Diffstat (limited to 'MCPKit_bundled.framework/Headers/MCPConnectionWinCont.h')
-rw-r--r--MCPKit_bundled.framework/Headers/MCPConnectionWinCont.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/MCPKit_bundled.framework/Headers/MCPConnectionWinCont.h b/MCPKit_bundled.framework/Headers/MCPConnectionWinCont.h
deleted file mode 100644
index 98195e9f..00000000
--- a/MCPKit_bundled.framework/Headers/MCPConnectionWinCont.h
+++ /dev/null
@@ -1,52 +0,0 @@
-//
-// MCPConnectionWinCont.h
-// Vacations
-//
-// Created by Serge Cohen on Mon May 26 2003.
-// Copyright (c) 2003 ARP/wARP. All rights reserved.
-//
-
-#import <AppKit/AppKit.h>
-
-// External classes, forward reference.
-@class MCPDocument;
-
-
-@interface MCPConnectionWinCont : NSWindowController
-{
- IBOutlet NSTextField *mHostField;
- IBOutlet NSTextField *mLoginField;
- IBOutlet NSTextField *mDatabaseField;
- IBOutlet NSTextField *mPortField;
-
- IBOutlet NSPanel *mPasswordSheet;
- IBOutlet NSTextField *mPasswordField;
-
- IBOutlet NSButton *mCreateButton;
-// MCPDocument *mMCPDocument;
-}
-
-
-/*" Actions for Interface Builder "*/
-/*" For the clear text information. "*/
-- (IBAction) doGo:(id) sender;
-- (IBAction) doCancel:(id) sender;
-- (IBAction) doCreate:(id) sender;
-- (IBAction) modifyInstance:(id) sender;
-
-
-/*" For the password. "*/
-- (IBAction) passwordClick:(id) sender;
-- (IBAction) askPassword:(id) sender;
-- (NSString *) Password;
-
-
-/*" Overrides of NSWindowController method, to adapt to this Window Controller. "*/
-- (id) init;
-- (void) dealloc;
-- (void) windowDidLoad;
-
-/*" Getting the button for creating a DB. "*/
-- (NSButton*) getCreateButton;
-
-@end