Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
f30d5e21
Commit
f30d5e21
authored
Jul 13, 2010
by
Friedemann Kleint
Browse files
Further MSVC compiles fixes with new wchar_t
parent
1787a854
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/cdb/coreengine.cpp
View file @
f30d5e21
...
...
@@ -983,10 +983,10 @@ static void formatEventFilter(CIDebugControl *ctl, unsigned long start, unsigned
HRESULT
hr
=
ctl
->
GetEventFilterTextWide
(
i
,
buffer
,
bufSize
,
0
);
if
(
SUCCEEDED
(
hr
))
{
ULONG
size
;
str
<<
"- #"
<<
i
<<
"
\"
"
<<
QString
::
from
Utf16
(
buffer
)
<<
'"'
;
str
<<
"- #"
<<
i
<<
"
\"
"
<<
QString
::
from
WCharArray
(
buffer
)
<<
'"'
;
hr
=
ctl
->
GetEventFilterCommandWide
(
i
,
buffer
,
bufSize
,
&
size
);
if
(
SUCCEEDED
(
hr
)
&&
size
>
1
)
str
<<
" command: '"
<<
QString
::
from
Utf16
(
buffer
)
<<
'\''
;
str
<<
" command: '"
<<
QString
::
from
WCharArray
(
buffer
)
<<
'\''
;
if
(
isException
)
{
DEBUG_EXCEPTION_FILTER_PARAMETERS
exceptionParameters
;
hr
=
ctl
->
GetExceptionFilterParameters
(
1
,
0
,
i
,
&
exceptionParameters
);
...
...
@@ -1001,7 +1001,7 @@ static void formatEventFilter(CIDebugControl *ctl, unsigned long start, unsigned
if
(
exceptionParameters
.
SecondCommandSize
)
{
hr
=
ctl
->
GetExceptionFilterSecondCommandWide
(
i
,
buffer
,
bufSize
,
0
);
if
(
SUCCEEDED
(
hr
))
str
<<
" 2nd-command '"
<<
QString
::
from
Utf16
(
buffer
)
<<
'\''
;
str
<<
" 2nd-command '"
<<
QString
::
from
WCharArray
(
buffer
)
<<
'\''
;
}
}
}
// isException
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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