Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
230217e4
Commit
230217e4
authored
Nov 16, 2015
by
Austin English
Committed by
Alexandre Julliard
Nov 17, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Use winediag debug channel for some error messages.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
097006b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
driver.c
dlls/user32/driver.c
+3
-2
No files found.
dlls/user32/driver.c
View file @
230217e4
...
...
@@ -32,6 +32,7 @@
#include "controls.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
user
);
WINE_DECLARE_DEBUG_CHANNEL
(
winediag
);
static
USER_DRIVER
null_driver
,
lazy_load_driver
;
...
...
@@ -402,8 +403,8 @@ static BOOL CDECL nulldrv_CreateWindow( HWND hwnd )
if
(
!
parent
||
parent
==
get_user_thread_info
()
->
msg_window
)
return
TRUE
;
if
(
warned
++
)
return
FALSE
;
MESSAGE
(
"Application tried to create a window, but no driver could be loaded.
\n
"
);
if
(
driver_load_error
[
0
])
MESSAGE
(
"%s
\n
"
,
driver_load_error
);
ERR_
(
winediag
)(
"Application tried to create a window, but no driver could be loaded.
\n
"
);
if
(
driver_load_error
[
0
])
ERR_
(
winediag
)
(
"%s
\n
"
,
driver_load_error
);
return
FALSE
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment