mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +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
|
||||
the string if converting case */
|
||||
{
|
||||
char *p, *string = NULL;
|
||||
char *string = NULL;
|
||||
LRESULT ret;
|
||||
if( lphc->dwStyle & CBS_LOWERCASE )
|
||||
{
|
||||
|
@ -2129,7 +2129,6 @@ static LRESULT ComboWndProc_common( HWND hwnd, UINT message,
|
|||
}
|
||||
else
|
||||
{
|
||||
char *p;
|
||||
if( lphc->dwStyle & CBS_LOWERCASE )
|
||||
CharLowerA((LPSTR)lParam);
|
||||
else if( lphc->dwStyle & CBS_UPPERCASE )
|
||||
|
|
Loading…
Reference in a new issue