diff options
author | Sven Gothel <[email protected]> | 2011-09-04 20:32:46 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-09-04 20:32:46 +0200 |
commit | d4670328991c02a6f11f8873ea7a2331f17d0ef0 (patch) | |
tree | 6111ef98a9142b44aa22f86e1920decc30fa52b1 /src/newt/native | |
parent | 70b495519094de5fcca37da68fbbf8762eecbe28 (diff) |
NativeWindow/NEWT: Refine Insets definition for size and position, read and write access
Diffstat (limited to 'src/newt/native')
-rw-r--r-- | src/newt/native/NewtMacWindow.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newt/native/NewtMacWindow.m b/src/newt/native/NewtMacWindow.m index cba69498a..cd435eb1d 100644 --- a/src/newt/native/NewtMacWindow.m +++ b/src/newt/native/NewtMacWindow.m @@ -173,7 +173,7 @@ static jmethodID windowDestroyNotifyID = NULL; jint right = (jint)(frameRect.size.width - (contentRect.size.width + l)); (*env)->CallVoidMethod(env, javaWindowObject, insetsChangedID, - left, top, right, bottom); + left, right, top, bottom); } - (id) initWithContentRect: (NSRect) contentRect |