Changeset 3490

Show
Ignore:
Timestamp:
10/06/04 21:54:47 (4 years ago)
Author:
miyoshi
Message:

* mw32font.c (mw32font_set_frame_ime_font_by_llogfont): Do nothing
when IME_CONTROL is defined.

* mw32fns.c (mw32m_ime_create_agent): Invalidated when IME_CONTROL
is defined.
(mw32m_ime_destroy_agent): Ditto.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.1/src/ChangeLog.Meadow

    r3460 r3490  
     12004-10-06  MIYOSHI Masanori  <miyoshi@meadowy.org> 
     2 
     3        * mw32font.c (mw32font_set_frame_ime_font_by_llogfont): Do nothing 
     4        when IME_CONTROL is defined. 
     5 
     6        * mw32fns.c (mw32m_ime_create_agent): Invalidated when IME_CONTROL 
     7        is defined. 
     8        (mw32m_ime_destroy_agent): Ditto. 
     9 
    1102004-09-16  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    211 
  • branches/2.1/src/mw32fns.c

    r3430 r3490  
    29712971} 
    29722972 
     2973#ifdef IME_CONTROL 
    29732974void mw32m_ime_create_agent () 
    29742975{ 
     
    29942995                              (WPARAM) 0, (LPARAM) 0); 
    29952996} 
     2997#endif /* IME_CONTROL */ 
    29962998 
    29972999static void 
  • branches/2.1/src/mw32font.c

    r3370 r3490  
    22642264mw32font_set_frame_ime_font_by_llogfont (FRAME_PTR f, Lisp_Object llf) 
    22652265{ 
     2266#ifdef IME_CONTROL 
    22662267  LOGFONT lf; 
    22672268 
     
    22752276                       (WPARAM) f, 
    22762277                       (LPARAM) &lf); 
     2278#endif /* IME_CONTROL */ 
    22772279} 
    22782280