diff options
author | stuconnolly <stuart02@gmail.com> | 2011-07-31 13:37:36 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2011-07-31 13:37:36 +0000 |
commit | 34dc6a658202bd624971c81633ea484e3f4f1e74 (patch) | |
tree | 6e888d59e87b75184c92c493bb243da966c2242c /Source/SPTextView.m | |
parent | 0d1cb97edd7dd422267dd4158625e566ad37b55a (diff) | |
download | sequelpro-34dc6a658202bd624971c81633ea484e3f4f1e74.tar.gz sequelpro-34dc6a658202bd624971c81633ea484e3f4f1e74.tar.bz2 sequelpro-34dc6a658202bd624971c81633ea484e3f4f1e74.zip |
Small tidy up.
Diffstat (limited to 'Source/SPTextView.m')
-rw-r--r-- | Source/SPTextView.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPTextView.m b/Source/SPTextView.m index 3bcf72f5..5edad98f 100644 --- a/Source/SPTextView.m +++ b/Source/SPTextView.m @@ -3223,8 +3223,8 @@ NSInteger _alphabeticSort(id string1, id string2, void *reverse) } // Disable "Copy with Column Names" and "Copy as SQL INSERT" // in the main menu - if ( [menuItem tag] == MENU_EDIT_COPY_WITH_COLUMN - || [menuItem tag] == MENU_EDIT_COPY_AS_SQL ) { + if ( [menuItem tag] == SPEditMenuCopyWithColumns + || [menuItem tag] == SPEditCopyAsSQL ) { return NO; } |