Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
05d96cf7
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看板
提交
05d96cf7
编写于
7月 26, 2014
作者:
S
serb
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8049057: JNI exception pending in jdk/src/windows/native/sun/windows/
Reviewed-by: pchelko, prr
上级
dd55afd3
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
16 addition
and
3 deletion
+16
-3
src/windows/native/sun/windows/awt_Component.cpp
src/windows/native/sun/windows/awt_Component.cpp
+3
-1
src/windows/native/sun/windows/awt_Cursor.cpp
src/windows/native/sun/windows/awt_Cursor.cpp
+3
-2
src/windows/native/sun/windows/awt_PrintJob.cpp
src/windows/native/sun/windows/awt_PrintJob.cpp
+10
-0
未找到文件。
src/windows/native/sun/windows/awt_Component.cpp
浏览文件 @
05d96cf7
...
...
@@ -467,7 +467,9 @@ void AwtComponent::InitPeerGraphicsConfig(JNIEnv *env, jobject peer)
jclass
win32GCCls
=
env
->
FindClass
(
"sun/awt/Win32GraphicsConfig"
);
DASSERT
(
win32GCCls
!=
NULL
);
DASSERT
(
env
->
IsInstanceOf
(
compGC
,
win32GCCls
));
CHECK_NULL
(
win32GCCls
);
if
(
win32GCCls
==
NULL
)
{
throw
std
::
bad_alloc
();
}
env
->
SetObjectField
(
peer
,
AwtComponent
::
peerGCID
,
compGC
);
}
}
...
...
src/windows/native/sun/windows/awt_Cursor.cpp
浏览文件 @
05d96cf7
...
...
@@ -229,9 +229,10 @@ void AwtCursor::UpdateCursor(AwtComponent *comp) {
if
(
cur
!=
NULL
)
{
::
SetCursor
(
cur
);
}
else
{
safe_ExceptionOccurred
(
env
);
if
(
safe_ExceptionOccurred
(
env
))
{
env
->
ExceptionClear
();
}
}
if
(
AwtCursor
::
updateCursorID
==
NULL
)
{
jclass
cls
=
env
->
FindClass
(
"sun/awt/windows/WGlobalCursorManager"
);
...
...
src/windows/native/sun/windows/awt_PrintJob.cpp
浏览文件 @
05d96cf7
...
...
@@ -758,6 +758,7 @@ Java_sun_awt_windows_WPrinterJob_getDefaultPage(JNIEnv *env, jobject self,
// through print dialog or start of printing
// None of those may have happened yet, so call initPrinter()
initPrinter
(
env
,
self
);
JNU_CHECK_EXCEPTION
(
env
);
HANDLE
hDevNames
=
AwtPrintControl
::
getPrintHDName
(
env
,
self
);
HDC
hdc
=
AwtPrintControl
::
getPrintDC
(
env
,
self
);
...
...
@@ -1102,6 +1103,7 @@ Java_sun_awt_windows_WPrinterJob_initPrinter(JNIEnv *env, jobject self) {
jboolean
err
;
initPrinter
(
env
,
self
);
JNU_CHECK_EXCEPTION
(
env
);
// check for collation
HGLOBAL
hDevNames
=
AwtPrintControl
::
getPrintHDName
(
env
,
self
);
...
...
@@ -1362,6 +1364,13 @@ Java_sun_awt_windows_WPrinterJob__1startDoc(JNIEnv *env, jobject self,
}
initPrinter
(
env
,
self
);
if
(
env
->
ExceptionCheck
())
{
if
(
dest
!=
NULL
)
{
JNU_ReleaseStringPlatformChars
(
env
,
dest
,
destination
);
}
return
JNI_FALSE
;
}
HDC
printDC
=
AwtPrintControl
::
getPrintDC
(
env
,
self
);
SAVE_CONTROLWORD
...
...
@@ -3827,6 +3836,7 @@ void setCapabilities(JNIEnv *env, jobject self, HDC printDC) {
// pixels per inch in y direction
jint
yRes
=
GetDeviceCaps
(
printDC
,
LOGPIXELSY
);
err
=
setIntField
(
env
,
self
,
YRES_STR
,
yRes
);
if
(
err
)
return
;
// x coord of printable area in pixels
jint
xOrg
=
GetDeviceCaps
(
printDC
,
PHYSICALOFFSETX
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录