mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 15:11:37 +00:00
Use [self frame] instead of ivar frame to be portable to other OpenSteps
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5726 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3434ca1b0a
commit
7595a7fd9c
1 changed files with 2 additions and 2 deletions
|
@ -485,11 +485,11 @@
|
|||
unsigned int i;
|
||||
// YES if the whole GSTable needs an update
|
||||
BOOL tableNeedUpdate = NO;
|
||||
NSSize oldFrameSize = frame.size;
|
||||
NSSize oldFrameSize = [self frame].size;
|
||||
NSSize newFrameSize;
|
||||
|
||||
[super resizeWithOldSuperviewSize: oldSize];
|
||||
newFrameSize = frame.size;
|
||||
newFrameSize = [self frame].size;
|
||||
|
||||
//
|
||||
// Width
|
||||
|
|
Loading…
Reference in a new issue