Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
ea2580ba
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
ea2580ba
编写于
3月 21, 2012
作者:
K
kizune
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7144063: [macosx] Swing JMenu mnemonic doesn't work; hint misleading; cross symbol typed
Reviewed-by: leonidr, skovatch, swingler
上级
58f491ae
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
23 deletion
+21
-23
src/macosx/native/sun/awt/AWTView.m
src/macosx/native/sun/awt/AWTView.m
+1
-1
src/macosx/native/sun/awt/OSVersion.m
src/macosx/native/sun/awt/OSVersion.m
+20
-22
未找到文件。
src/macosx/native/sun/awt/AWTView.m
浏览文件 @
ea2580ba
...
...
@@ -812,7 +812,7 @@ JNF_CLASS_CACHE(jc_CInputMethod, "sun/lwawt/macosx/CInputMethod");
// Unicode value.
NSUInteger
utf8Length
=
[
aString
lengthOfBytesUsingEncoding
:
NSUTF8StringEncoding
];
if
([
self
hasMarkedText
]
||
!
fProcessingKeystroke
||
(
utf8Length
>
2
))
{
if
([
self
hasMarkedText
]
||
!
fProcessingKeystroke
||
(
utf8Length
>
1
))
{
JNIEnv
*
env
=
[
ThreadUtilities
getJNIEnv
];
static
JNF_MEMBER_CACHE
(
jm_selectPreviousGlyph
,
jc_CInputMethod
,
"selectPreviousGlyph"
,
"()V"
);
...
...
src/macosx/native/sun/awt/OSVersion.m
浏览文件 @
ea2580ba
...
...
@@ -31,33 +31,31 @@
#import
<JavaRuntimeSupport
/
JavaRuntimeSupport.h
>
// returns 10.7 for Lion, 10.6 for SnowLeopard etc.
double getOSXMajorVersion() {
char *version = JRSCopyOSVersion();
if (version == NULL) return 0.0;
char temp[32];
strlcpy(temp, version, sizeof(temp));
free(version);
if (strlen(temp)
<
3)
{
return
0.0;
// returns 107 for Lion, 106 for SnowLeopard etc.
int getOSXMajorVersion() {
char *ver = JRSCopyOSVersion();
if (ver == NULL) {
return 0;
}
if
(
temp
[2]
!=
'.')
{
//
Third
char
must
be
a
'.'
return
0.0;
int len = strlen(ver);
int v = 0;
// Third char must be a '.'
if (len >= 3
&&
ver[2] == '.') {
int i;
v = (ver[0] - '0') * 10 + (ver[1] - '0');
for (i = 3; i
<
len
&&
isdigit
(
ver
[
i
]);
++
i
)
{
v =
v
*
10
+
(
ver
[
i
]
-
'0');
}
}
char
*ptr =
strchr(temp+3,
'.');
//
remove
the
second
.
if
one
exists.
if
(
ptr
!=
NULL
)
{
*ptr =
0;
}
return
atof
(
temp
);
free
(
ver
);
return
v
;
}
BOOL
isSnowLeopardOrLower
()
{
return
(
getOSXMajorVersion
()
<
10
.
7);
return
(
getOSXMajorVersion
()
<
107);
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录