diff options
author | rowanbeentje <rowan@beent.je> | 2014-05-04 22:53:36 +0100 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2014-05-04 22:53:36 +0100 |
commit | bcad9a1827fffb4d132b50bbf1ada08ddde23f09 (patch) | |
tree | 5245266378af0894ec692a849a4377289f410e57 | |
parent | 6d33243e4a658d600e646a1b58afb363b9650cdc (diff) | |
download | sequelpro-bcad9a1827fffb4d132b50bbf1ada08ddde23f09.tar.gz sequelpro-bcad9a1827fffb4d132b50bbf1ada08ddde23f09.tar.bz2 sequelpro-bcad9a1827fffb4d132b50bbf1ada08ddde23f09.zip |
Fix string formatting warnings in NSRunAlertPanel by using the additional arguments
-rw-r--r-- | Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m | 2 | ||||
-rw-r--r-- | Source/SPDatabaseDocument.m | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m index c0a9572d..4f1f1b7b 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m @@ -166,7 +166,7 @@ if ([delegate respondsToSelector:@selector(showErrorWithTitle:message:)]) { [delegate showErrorWithTitle:NSLocalizedString(@"Error", @"error") message:errorMessage]; } else { - NSRunAlertPanel(NSLocalizedString(@"Error", @"error"), errorMessage, @"OK", nil, nil); + NSRunAlertPanel(NSLocalizedString(@"Error", @"error"), @"%@", @"OK", nil, nil, errorMessage); } return NO; diff --git a/Source/SPDatabaseDocument.m b/Source/SPDatabaseDocument.m index 105d7105..330716c3 100644 --- a/Source/SPDatabaseDocument.m +++ b/Source/SPDatabaseDocument.m @@ -1784,7 +1784,7 @@ static NSString *SPAlterDatabaseAction = @"SPAlterDatabase"; // Check for errors, only displaying if the connection hasn't been terminated if ([mySQLConnection queryErrored]) { if ([mySQLConnection isConnected]) { - NSRunAlertPanel(@"Error", [NSString stringWithFormat:NSLocalizedString(@"An error occured while creating table syntax.\n\n: %@", @"Error shown when unable to show create table syntax"), [mySQLConnection lastErrorMessage]], @"OK", nil, nil); + NSRunAlertPanel(@"Error", @"%@", @"OK", nil, nil, [NSString stringWithFormat:NSLocalizedString(@"An error occured while creating table syntax.\n\n: %@", @"Error shown when unable to show create table syntax"), [mySQLConnection lastErrorMessage]]); } return; |