mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 10:52:59 +00:00
Missed removing unused variables during manual patching.
svn path=/trunk/; revision=22379
This commit is contained in:
parent
3c7fc29628
commit
e61b53b59e
1 changed files with 1 additions and 2 deletions
|
@ -2096,7 +2096,7 @@ static LRESULT ComboWndProc_common( HWND hwnd, UINT message,
|
||||||
else /* unlike the unicode version, the ansi version does not overwrite
|
else /* unlike the unicode version, the ansi version does not overwrite
|
||||||
the string if converting case */
|
the string if converting case */
|
||||||
{
|
{
|
||||||
char *p, *string = NULL;
|
char *string = NULL;
|
||||||
LRESULT ret;
|
LRESULT ret;
|
||||||
if( lphc->dwStyle & CBS_LOWERCASE )
|
if( lphc->dwStyle & CBS_LOWERCASE )
|
||||||
{
|
{
|
||||||
|
@ -2129,7 +2129,6 @@ static LRESULT ComboWndProc_common( HWND hwnd, UINT message,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
char *p;
|
|
||||||
if( lphc->dwStyle & CBS_LOWERCASE )
|
if( lphc->dwStyle & CBS_LOWERCASE )
|
||||||
CharLowerA((LPSTR)lParam);
|
CharLowerA((LPSTR)lParam);
|
||||||
else if( lphc->dwStyle & CBS_UPPERCASE )
|
else if( lphc->dwStyle & CBS_UPPERCASE )
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue