Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 131 → Rev 132

/trunk/ui_win.c
181,6 → 181,7
Boolean maindialog(FilterRecordPtr pb){
PlatformData *p;
WNDCLASSEX clx;
INT_PTR res;
 
// For the preview image, we register a class, so that we can assign a mouse cursor to this class.
clx.cbSize = sizeof(WNDCLASSEX);
196,7 → 197,7
 
// Now show the dialog
p = pb->platformData;
INT_PTR res = DialogBoxParam(hDllInstance,MAKEINTRESOURCE(gdata->standalone ? ID_PARAMDLG : ID_MAINDLG),
res = DialogBoxParam(hDllInstance,MAKEINTRESOURCE(gdata->standalone ? ID_PARAMDLG : ID_MAINDLG),
(HWND)p->hwnd,maindlgproc,0) == IDOK;
 
UnregisterClass("Preview", hDllInstance);