diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/TableDocument.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/TableDocument.m b/Source/TableDocument.m index d6758112..f4383535 100644 --- a/Source/TableDocument.m +++ b/Source/TableDocument.m @@ -1290,7 +1290,7 @@ - (NSString *)host { if ([connectionController type] == SP_CONNECTION_SOCKET) return @"localhost"; - NSString theHost = [connectionController host]; + NSString *theHost = [connectionController host]; if (!theHost) theHost = @""; return theHost; } @@ -1338,7 +1338,7 @@ */ - (NSString *)user { - NSString theUser = [connectionController user]; + NSString *theUser = [connectionController user]; if (!theUser) theUser = @""; return theUser; } |