Changeset 32 for trunk/src/plugins


Ignore:
Timestamp:
Nov 8, 2007, 10:08:23 PM (18 years ago)
Author:
lpino
Message:
  • No change
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/plugins/org.eclipse.swt/Eclipse SWT/pm/org/eclipse/swt/widgets/Decorations.java

    r14 r32  
    355355     */
    356356    int hwndOwner = OS.NULLHANDLE;
    357     if (parent != null)
    358         if (parent instanceof Shell)
     357    if (parent != null){
     358        if (parent instanceof Shell){
    359359            hwndOwner = ((Shell) parent).frameHandle;
    360         else
     360        }
     361        else{
    361362            hwndOwner = parent.handle;
     363        }
     364    }
    362365    int hwndParent = OS.HWND_DESKTOP;
    363366    /*
     
    16451648
    16461649MRESULT WM_SETFOCUS (int mp1, int mp2) {
    1647         MRESULT result  = super.WM_SETFOCUS (mp1, mp2);
     1650    MRESULT result  = super.WM_SETFOCUS (mp1, mp2);
    16481651    boolean gotFocus = OS.SHORT1FROMMP (mp2) > 0;
    16491652    if (gotFocus) {
Note: See TracChangeset for help on using the changeset viewer.