aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2009-12-09 23:41:20 +0000
committerrowanbeentje <rowan@beent.je>2009-12-09 23:41:20 +0000
commitc1b9f9936fbf99ecf0f5ad2faaa0755fa27963c2 (patch)
treefbf657a29b909a56c39581a883add72414febdf1 /Source
parent82863377e365f27dffe757dba7b25163a48aec1d (diff)
downloadsequelpro-c1b9f9936fbf99ecf0f5ad2faaa0755fa27963c2.tar.gz
sequelpro-c1b9f9936fbf99ecf0f5ad2faaa0755fa27963c2.tar.bz2
sequelpro-c1b9f9936fbf99ecf0f5ad2faaa0755fa27963c2.zip
- Add document images for .spf and .sql files
- Rename "SequelPro connections" to "Sequel Pro connections" for consistency - Update version numbers to 0.9.7
Diffstat (limited to 'Source')
-rw-r--r--Source/SPAppController.m8
-rw-r--r--Source/TableDocument.m2
2 files changed, 5 insertions, 5 deletions
diff --git a/Source/SPAppController.m b/Source/SPAppController.m
index 89574f04..62255501 100644
--- a/Source/SPAppController.m
+++ b/Source/SPAppController.m
@@ -242,7 +242,7 @@
TableDocument *firstTableDocument;
// Manually open a new document, setting SPAppController as sender to trigger autoconnection
- if (firstTableDocument = [[NSDocumentController sharedDocumentController] makeUntitledDocumentOfType:@"SequelPro connection" error:nil]) {
+ if (firstTableDocument = [[NSDocumentController sharedDocumentController] makeUntitledDocumentOfType:@"Sequel Pro connection" error:nil]) {
[firstTableDocument setShouldAutomaticallyConnect:NO];
// user comes from a openPanel? if so use the chosen encoding
@@ -277,7 +277,7 @@
TableDocument *newTableDocument;
// Manually open a new document, setting SPAppController as sender to trigger autoconnection
- if (newTableDocument = [[NSDocumentController sharedDocumentController] makeUntitledDocumentOfType:@"SequelPro connection" error:nil]) {
+ if (newTableDocument = [[NSDocumentController sharedDocumentController] makeUntitledDocumentOfType:@"Sequel Pro connection" error:nil]) {
[newTableDocument setShouldAutomaticallyConnect:NO];
[[NSDocumentController sharedDocumentController] addDocument:newTableDocument];
[newTableDocument makeWindowControllers];
@@ -409,7 +409,7 @@
TableDocument *firstTableDocument;
// Manually open a new document, setting SPAppController as sender to trigger autoconnection
- if (firstTableDocument = [[NSDocumentController sharedDocumentController] makeUntitledDocumentOfType:@"SequelPro connection" error:nil]) {
+ if (firstTableDocument = [[NSDocumentController sharedDocumentController] makeUntitledDocumentOfType:@"Sequel Pro connection" error:nil]) {
if ([[NSUserDefaults standardUserDefaults] boolForKey:SPAutoConnectToDefault]) {
[firstTableDocument setShouldAutomaticallyConnect:YES];
}
@@ -434,7 +434,7 @@
TableDocument *firstTableDocument;
// Manually open a new document, setting SPAppController as sender to trigger autoconnection
- if (firstTableDocument = [[NSDocumentController sharedDocumentController] makeUntitledDocumentOfType:@"SequelPro connection" error:nil]) {
+ if (firstTableDocument = [[NSDocumentController sharedDocumentController] makeUntitledDocumentOfType:@"Sequel Pro connection" error:nil]) {
[[NSDocumentController sharedDocumentController] addDocument:firstTableDocument];
[firstTableDocument makeWindowControllers];
[firstTableDocument showWindows];
diff --git a/Source/TableDocument.m b/Source/TableDocument.m
index 6d77b4e5..2fbe19c7 100644
--- a/Source/TableDocument.m
+++ b/Source/TableDocument.m
@@ -2182,7 +2182,7 @@
TableDocument *newTableDocument;
// Manually open a new document, setting SPAppController as sender to trigger autoconnection
- if (newTableDocument = [[NSDocumentController sharedDocumentController] makeUntitledDocumentOfType:@"SequelPro connection" error:nil]) {
+ if (newTableDocument = [[NSDocumentController sharedDocumentController] makeUntitledDocumentOfType:@"Sequel Pro connection" error:nil]) {
[newTableDocument setShouldAutomaticallyConnect:NO];
[[NSDocumentController sharedDocumentController] addDocument:newTableDocument];
[newTableDocument makeWindowControllers];