Ignore:
Timestamp:
Oct 19, 2011, 11:26:02 AM (13 years ago)
Author:
dmik
Message:

Replace "\" with "/" in include statements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified branches/gcc-kmk/src/user32/win32dlg.cpp

    r10545 r21720  
    1818#include <misc.h>
    1919#include <win32dlg.h>
    20 #include <win\winproc.h>
     20#include <win/winproc.h>
    2121#include "oslibmsg.h"
    2222#include "oslibwin.h"
     
    202202
    203203    //Mask away WS_CAPTION style for dialogs with DS_CONTROL style
    204     //(necessary for OFN_ENABLETEMPLATE file open dialogs) 
     204    //(necessary for OFN_ENABLETEMPLATE file open dialogs)
    205205    //(verified this behaviour in NT4, SP6)
    206206    if (dlgInfo.style & DS_CONTROL)     cs.style &= ~(WS_CAPTION);
     
    265265
    266266        HWND hwndPreInitFocus = GetFocus();
    267         if(SendMessageA(getWindowHandle(), WM_INITDIALOG, (WPARAM)hwndFocus, param)) 
     267        if(SendMessageA(getWindowHandle(), WM_INITDIALOG, (WPARAM)hwndFocus, param))
    268268        {
    269269            //SvL: Experiments in NT4 show that dialogs that are children don't
    270270            //     receive focus. Not sure if this is always true. (couldn't
    271271            //     find any remarks about this in the SDK docs)
    272             if(!(getStyle() & WS_CHILD)) 
     272            if(!(getStyle() & WS_CHILD))
    273273            {
    274274                /* check where the focus is again,
     
    285285            //     receive focus. Not sure if this is always true. (couldn't
    286286            //     find any remarks about this in the SDK docs)
    287             if(!(getStyle() & WS_CHILD)) 
     287            if(!(getStyle() & WS_CHILD))
    288288            {
    289289                /* If the dlgproc has returned FALSE (indicating handling of keyboard focus)
     
    379379                       HOOK_CallHooksA( WH_MSGFILTER, MSGF_DIALOGBOX, 0,
    380380                                          (LPARAM) pmsg ));
    381                        
     381
    382382                HeapFree( GetProcessHeap(), 0, pmsg );
    383383                if (ret)
     
    11631163
    11641164    /* unblock dialog loop */
    1165     PostMessageA(hwnd, WM_NULL, 0, 0); 
     1165    PostMessageA(hwnd, WM_NULL, 0, 0);
    11661166    return TRUE;
    11671167}
Note: See TracChangeset for help on using the changeset viewer.