diff options
author | Bibiko <bibiko@eva.mpg.de> | 2011-03-15 22:41:05 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2011-03-15 22:41:05 +0000 |
commit | f75853dea57bc97cc264352268f9d4a311bffb9f (patch) | |
tree | f1b14de8c0393a383d7fbf68776221c9da406b81 /Source/SPActivityTextFieldCell.m | |
parent | ce26c1a8d44743c418e6af461ba970cea3afaaee (diff) | |
download | sequelpro-f75853dea57bc97cc264352268f9d4a311bffb9f.tar.gz sequelpro-f75853dea57bc97cc264352268f9d4a311bffb9f.tar.bz2 sequelpro-f75853dea57bc97cc264352268f9d4a311bffb9f.zip |
• fixed warnings
Diffstat (limited to 'Source/SPActivityTextFieldCell.m')
-rw-r--r-- | Source/SPActivityTextFieldCell.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPActivityTextFieldCell.m b/Source/SPActivityTextFieldCell.m index 10194466..1ccb7207 100644 --- a/Source/SPActivityTextFieldCell.m +++ b/Source/SPActivityTextFieldCell.m @@ -259,7 +259,7 @@ static inline NSRect SPTextLinkRectFromCellRect(NSRect inRect) // Remove it from the list directly since the list will be updated in the background // to avoid to cancel a command which is already cancelled if(status == 0) - [[[controlView delegate] onMainThread] removeActivity:[[contextInfo objectForKey:@"pid"] intValue]]; + [[[(id)controlView delegate] onMainThread] removeActivity:[[contextInfo objectForKey:@"pid"] intValue]]; return YES; } |