aboutsummaryrefslogtreecommitdiff
path: root/src/macosx
diff options
context:
space:
mode:
authorDenis Fokin <Denis.Fokin@jetbrains.com>2017-06-07 13:37:25 +0300
committerDenis Fokin <Denis.Fokin@jetbrains.com>2017-06-07 13:37:25 +0300
commit68681201f5393661a324d3c88ff1a56fff888262 (patch)
treec1a4ea07e67eb0522889d3bf7e7c10aab01fef72 /src/macosx
parent4b279a3ffffd309b396ce4903ef4ebd5c0167372 (diff)
downloadjdk8u_jdk-68681201f5393661a324d3c88ff1a56fff888262.tar.gz
Xcode4 build fixjb8u152-b926
Diffstat (limited to 'src/macosx')
-rw-r--r--src/macosx/native/sun/awt/AWTWindow.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macosx/native/sun/awt/AWTWindow.m b/src/macosx/native/sun/awt/AWTWindow.m
index efe6eaca28..308b37a241 100644
--- a/src/macosx/native/sun/awt/AWTWindow.m
+++ b/src/macosx/native/sun/awt/AWTWindow.m
@@ -1025,7 +1025,7 @@ JNF_COCOA_ENTER(env);
window.styleBits = newBits;
- nsWindow.titlebarAppearsTransparent = IS(window.styleBits, TRANSPARENT_TITLEBAR);
+ [nsWindow setTitlebarAppearsTransparent:IS(window.styleBits, TRANSPARENT_TITLEBAR)];
Class* nsAppearanceClass = NSClassFromString(@"NSAppearance");