diff options
Diffstat (limited to 'Source/CMCopyTable.m')
-rw-r--r-- | Source/CMCopyTable.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CMCopyTable.m b/Source/CMCopyTable.m index cc917dba..dc9cc770 100644 --- a/Source/CMCopyTable.m +++ b/Source/CMCopyTable.m @@ -85,7 +85,7 @@ NSInteger MENU_EDIT_COPY_AS_SQL = 2002; } if ( [anItem tag] == MENU_EDIT_COPY_AS_SQL ) { - return (columnDefinitions != NULL && [self selectedRow] > -1); + return (columnDefinitions != nil && [self selectedRow] > -1); } return YES; } |