mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
NSPoints are not passed by reference.
This commit is contained in:
parent
acb42de4d5
commit
5996198345
1 changed files with 3 additions and 3 deletions
|
@ -22,8 +22,8 @@ extern float zplanedir;
|
||||||
- clearBounds;
|
- clearBounds;
|
||||||
- getBounds: (float *)top :(float *)bottom;
|
- getBounds: (float *)top :(float *)bottom;
|
||||||
|
|
||||||
- getPoint: (NSPoint *)pt;
|
- getPoint: (NSPoint) point;
|
||||||
- setPoint: (NSPoint *)pt;
|
- setPoint: (NSPoint) point;
|
||||||
|
|
||||||
- addToHeightRange: (float)height;
|
- addToHeightRange: (float)height;
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ extern float zplanedir;
|
||||||
|
|
||||||
- (BOOL)XYmouseDown: (NSPoint *)pt;
|
- (BOOL)XYmouseDown: (NSPoint *)pt;
|
||||||
|
|
||||||
- setXYOrigin: (NSPoint *)pt;
|
- setXYOrigin: (NSPoint) point;
|
||||||
|
|
||||||
- setOrigin: (NSPoint *)pt scale: (float)sc;
|
- setOrigin: (NSPoint *)pt scale: (float)sc;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue