mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 18:10:38 +00:00
Tweaks to avoid new compiler warnings with gcc-4.1 and some 64bit issues.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@23126 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e2530f9bc8
commit
2ed1c70692
30 changed files with 313 additions and 246 deletions
|
@ -1578,12 +1578,12 @@ dictionary.
|
|||
-(BOOL) layoutManagerOwnsFirstResponderInWindow: (NSWindow *)window
|
||||
{
|
||||
int i;
|
||||
NSView *tv;
|
||||
NSView *v = [window firstResponder];
|
||||
NSResponder *tv;
|
||||
NSResponder *v = [window firstResponder];
|
||||
|
||||
for (i = 0; i < num_textcontainers; i++)
|
||||
{
|
||||
tv = (NSView *)[textcontainers[i].textContainer textView];
|
||||
tv = [textcontainers[i].textContainer textView];
|
||||
if (tv == v)
|
||||
return YES;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue