diff options
author | stuconnolly <stuart02@gmail.com> | 2008-12-09 00:08:35 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2008-12-09 00:08:35 +0000 |
commit | a6c17dfdaa46f413ee8aee6d39904eb89454f813 (patch) | |
tree | 4dc1b40656543e2e40ebc7ed33acec2203ef98a5 /TableDocument.h | |
parent | d7892ee21760a09fcedaa46e8a2f544146bd9a29 (diff) | |
download | sequelpro-a6c17dfdaa46f413ee8aee6d39904eb89454f813.tar.gz sequelpro-a6c17dfdaa46f413ee8aee6d39904eb89454f813.tar.bz2 sequelpro-a6c17dfdaa46f413ee8aee6d39904eb89454f813.zip |
- Partial fix for issue #109 by making the option to 'Autodetect' character encoding specific to each table
- Added the selected table's character encoding to the table information pane and removed the table's name
Diffstat (limited to 'TableDocument.h')
-rw-r--r-- | TableDocument.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/TableDocument.h b/TableDocument.h index ac20b335..62798b2d 100644 --- a/TableDocument.h +++ b/TableDocument.h @@ -134,7 +134,8 @@ //encoding methods - (void)setEncoding:(NSString *)encoding; -- (void)detectEncoding; +- (void)detectDatabaseEncoding; +- (void)detectTableEncodingForTable:(NSString *)table; - (IBAction)chooseEncoding:(id)sender; - (BOOL)supportsEncoding; - (void)updateEncodingMenuWithSelectedEncoding:(NSString *)encoding; @@ -214,9 +215,6 @@ objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex; -//for freeing up memory -- (void)dealloc; - @end extern NSString *TableDocumentFavoritesControllerSelectionIndexDidChange; |