diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-06-05 17:44:48 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-06-05 17:44:48 +0000 |
commit | 7b5f4d96727a505b67b7970e0b4f2ca1de0394a2 (patch) | |
tree | 79c322f805286c5cfa1e37c40da9e8e8278b458a /Source/CMTextView.m | |
parent | 67a3148cec8bc7d1c6f52f60c8ce93a4fe0b8ece (diff) | |
download | sequelpro-7b5f4d96727a505b67b7970e0b4f2ca1de0394a2.tar.gz sequelpro-7b5f4d96727a505b67b7970e0b4f2ca1de0394a2.tar.bz2 sequelpro-7b5f4d96727a505b67b7970e0b4f2ca1de0394a2.zip |
• reload table list, database pull-down menu according to user's statements in the Custom Query editor if necessary
- if statement begins with: use, create, alter, rename, drop
• reload table list, database pull-down menu according to imported statements
• sped up "Import MySQL Dump"
• fixed some tiny issues of the last commit
Diffstat (limited to 'Source/CMTextView.m')
-rw-r--r-- | Source/CMTextView.m | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/CMTextView.m b/Source/CMTextView.m index 27df70ed..a6f7cabc 100644 --- a/Source/CMTextView.m +++ b/Source/CMTextView.m @@ -293,7 +293,10 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) [completionPopUp setCaretPos:pos]; [completionPopUp orderFront:self]; - [completionPopUp release]; + //TODO : where to place the release?? + // [completionPopUp release]; + + } |