mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 19:50:48 +00:00
Move declarations before statements.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@18808 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
52d9d60b14
commit
8fa364b385
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-03-08 19:19 Alexander Malmberg <alexander@malmberg.org>
|
||||||
|
|
||||||
|
* Source/NSPageLayout.m (-readPrintInfo): Move declarations before
|
||||||
|
statements.
|
||||||
|
|
||||||
2004-03-08 19:04 Alexander Malmberg <alexander@malmberg.org>
|
2004-03-08 19:04 Alexander Malmberg <alexander@malmberg.org>
|
||||||
|
|
||||||
* Source/NSComboBoxCell.m (-runModalPopUp): Don't make the popup
|
* Source/NSComboBoxCell.m (-runModalPopUp): Don't make the popup
|
||||||
|
|
|
@ -520,10 +520,10 @@ static NSPageLayout *shared_instance;
|
||||||
|
|
||||||
//TODO Scaling
|
//TODO Scaling
|
||||||
{
|
{
|
||||||
control = [[self contentView] viewWithTag: NSPLScaleField];
|
|
||||||
float scale = 100;
|
float scale = 100;
|
||||||
NSNumber *scaleNumber;
|
NSNumber *scaleNumber;
|
||||||
if ( (scaleNumber = [dict objectForKey:NSPrintScalingFactor] ) )
|
control = [[self contentView] viewWithTag: NSPLScaleField];
|
||||||
|
if ((scaleNumber = [dict objectForKey:NSPrintScalingFactor]))
|
||||||
{
|
{
|
||||||
scale = [scaleNumber floatValue];
|
scale = [scaleNumber floatValue];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue