diff options
author | drx777 <david.rekowski@gmx.de> | 2010-04-29 18:26:19 +0000 |
---|---|---|
committer | drx777 <david.rekowski@gmx.de> | 2010-04-29 18:26:19 +0000 |
commit | e2810ccbe30371974a7df888dc5656ac9311677f (patch) | |
tree | 55e4f24a71ed0862620f3a75f9efcf001d257c89 /Source/SPTableCopy.m | |
parent | 47d42106c45d7663c05aaf6d3f0feab71798b51c (diff) | |
download | sequelpro-e2810ccbe30371974a7df888dc5656ac9311677f.tar.gz sequelpro-e2810ccbe30371974a7df888dc5656ac9311677f.tar.bz2 sequelpro-e2810ccbe30371974a7df888dc5656ac9311677f.zip |
Now longer using [NSApp mainWindow] but a reference to the correct window for message sheets. It could have caused messages appearing in the wrong window.
Diffstat (limited to 'Source/SPTableCopy.m')
-rw-r--r-- | Source/SPTableCopy.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPTableCopy.m b/Source/SPTableCopy.m index 6a73bb20..19bff7c2 100644 --- a/Source/SPTableCopy.m +++ b/Source/SPTableCopy.m @@ -28,7 +28,7 @@ @implementation SPTableCopy - (NSObject *)getTableWindow { - return [NSApp mainWindow]; + return messageWindow; } - (NSString *)getCreateTableStatementFor: (NSString *)tableName inDB: (NSString *)sourceDB { |