aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPUserManager.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2012-08-03 00:01:13 +0000
committerrowanbeentje <rowan@beent.je>2012-08-03 00:01:13 +0000
commitb56622b7471907f6c0a09bc67a19c0ea031df23a (patch)
treeb073d729c8fe6d7ad9116badf67865b613d0ab62 /Source/SPUserManager.m
parentf28bdfe2032a815743c52d103c7dfbd0adcc0c63 (diff)
downloadsequelpro-b56622b7471907f6c0a09bc67a19c0ea031df23a.tar.gz
sequelpro-b56622b7471907f6c0a09bc67a19c0ea031df23a.tar.bz2
sequelpro-b56622b7471907f6c0a09bc67a19c0ea031df23a.zip
- Remove all BWToolKit views from the QueryFavoriteManager and UserManagerView, replacing with SPSplitViews and standard equivalents
Diffstat (limited to 'Source/SPUserManager.m')
-rw-r--r--Source/SPUserManager.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/SPUserManager.m b/Source/SPUserManager.m
index 8b9d66d2..655aa460 100644
--- a/Source/SPUserManager.m
+++ b/Source/SPUserManager.m
@@ -37,10 +37,10 @@
#import "SPConnectionController.h"
#import "SPServerSupport.h"
#import "SPAlertSheets.h"
+#import "SPSplitView.h"
#import <SPMySQL/SPMySQL.h>
#import <QueryKit/QueryKit.h>
-#import <BWToolkitFramework/BWAnchoredButtonBar.h>
static const NSString *SPTableViewNameColumnID = @"NameColumn";
@@ -117,15 +117,15 @@ static const NSString *SPTableViewNameColumnID = @"NameColumn";
- (void)windowDidLoad
{
[tabView selectTabViewItemAtIndex:0];
-
+
+ [splitView setMinSize:120.f ofSubviewAtIndex:0];
+ [splitView setMinSize:620.f ofSubviewAtIndex:1];
+
NSTableColumn *tableColumn = [outlineView tableColumnWithIdentifier:SPTableViewNameColumnID];
ImageAndTextCell *imageAndTextCell = [[[ImageAndTextCell alloc] init] autorelease];
[imageAndTextCell setEditable:NO];
[tableColumn setDataCell:imageAndTextCell];
-
- // Set the button delegate
- [splitViewButtonBar setSplitViewDelegate:self];
// Set schema table double-click actions
[grantedTableView setDoubleAction:@selector(doubleClickSchemaPriv:)];