Changeset 411
- Timestamp:
- Jan 22, 2013, 11:43:26 PM (13 years ago)
- Location:
- trunk/openjdk/jdk/src/windows/native/sun/windows
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/src/windows/native/sun/windows/awt_TextArea.cpp
r333 r411 55 55 56 56 WNDPROC AwtTextArea::sm_pDefWindowProc = NULL; 57 #ifdef __WIN32OS2__ 58 // Odin only has RICHED32.DLL (Wrapper for Rich Text 1.0) 59 BOOL AwtTextArea::sm_RichEdit20 = FALSE; 60 #else 57 61 BOOL AwtTextArea::sm_RichEdit20 = (IS_WIN98 || IS_NT); 62 #endif 58 63 59 64 /************************************************************************ -
trunk/openjdk/jdk/src/windows/native/sun/windows/awt_dlls.cpp
r278 r411 277 277 load_rich_edit_library() { 278 278 static int initialized = 0; 279 #ifdef __WIN32OS2__ 280 // Odin only has RICHED32.DLL (Wrapper for Rich Text 1.0) 281 BOOL isRichEdit32Needed = TRUE; 282 #else 279 283 BOOL isRichEdit32Needed = IS_WIN95 && !IS_WIN98; 284 #endif 280 285 281 286 if (initialized) {
Note:
See TracChangeset
for help on using the changeset viewer.