Module: wine
Branch: master
Commit: 038d31ca93f0fee8af13b5863d3da07536de0945
URL: http://source.winehq.org/git/wine.git/?a=commit;h=038d31ca93f0fee8af13b5863…
Author: James Hawkins <truiken(a)gmail.com>
Date: Tue Oct 3 14:59:16 2006 -0700
msi: Don't ERR if a dialog doesn't provide control conditions, as they are not required.
---
dlls/msi/dialog.c | 5 +----
1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c
index 11719dd..fcbd766 100644
--- a/dlls/msi/dialog.c
+++ b/dlls/msi/dialog.c
@@ -2529,10 +2529,7 @@ static UINT msi_dialog_evaluate_control_
/* query the Control table for all the elements of the control */
r = MSI_OpenQuery( package->db, &view, query, dialog->name );
if( r != ERROR_SUCCESS )
- {
- ERR("query failed for dialog %s\n", debugstr_w(dialog->name));
- return ERROR_INVALID_PARAMETER;
- }
+ return ERROR_SUCCESS;
r = MSI_IterateRecords( view, 0, msi_dialog_set_control_condition, dialog );
msiobj_release( &view->hdr );
Module: wine
Branch: master
Commit: 9461c0c63471494ee6aa2b358db2956ba8ca08e1
URL: http://source.winehq.org/git/wine.git/?a=commit;h=9461c0c63471494ee6aa2b358…
Author: Roderick Colenbrander <thunderbird2k(a)gmx.net>
Date: Tue Oct 3 22:56:20 2006 +0200
x11drv: Fix wgl pixel format bug.
---
dlls/winex11.drv/opengl.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winex11.drv/opengl.c b/dlls/winex11.drv/opengl.c
index 24b30cb..64b1166 100644
--- a/dlls/winex11.drv/opengl.c
+++ b/dlls/winex11.drv/opengl.c
@@ -1203,7 +1203,7 @@ HGLRC X11DRV_wglCreateContext(X11DRV_PDE
/* We can only render using the iPixelFormat (1) of Wine's Main visual, we need to get the correspondig GLX format.
* If this fails something is very wrong on the system. */
- if(!ConvertPixelFormatWGLtoGLX(gdi_display, hdcPF, &tmp, &fmt_index)) {
+ if(!ConvertPixelFormatWGLtoGLX(gdi_display, hdcPF, &fmt_index, &tmp)) {
ERR("Cannot get FB Config for main iPixelFormat 1, expect problems!\n");
SetLastError(ERROR_INVALID_PIXEL_FORMAT);
return NULL;