Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ccab1771
Commit
ccab1771
authored
Feb 13, 2010
by
Kusanagi Kouichi
Committed by
Alexandre Julliard
Feb 15, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Consolidate empty string.
parent
b8fbf9a1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
edit.c
dlls/user32/edit.c
+2
-7
No files found.
dlls/user32/edit.c
View file @
ccab1771
...
...
@@ -169,6 +169,7 @@ typedef struct
(LPARAM)(es->hwndSelf)); \
} while(0)
static
const
WCHAR
empty_stringW
[]
=
{
0
};
/*********************************************************************
*
...
...
@@ -2878,8 +2879,7 @@ static void EDIT_WM_Paste(EDITSTATE *es)
}
else
if
(
es
->
style
&
ES_PASSWORD
)
{
/* clear selected text in password edit box even with empty clipboard */
const
WCHAR
empty_strW
[]
=
{
0
};
EDIT_EM_ReplaceSel
(
es
,
TRUE
,
empty_strW
,
TRUE
,
TRUE
);
EDIT_EM_ReplaceSel
(
es
,
TRUE
,
empty_stringW
,
TRUE
,
TRUE
);
}
CloseClipboard
();
}
...
...
@@ -2921,8 +2921,6 @@ static void EDIT_WM_Copy(EDITSTATE *es)
*/
static
inline
void
EDIT_WM_Clear
(
EDITSTATE
*
es
)
{
static
const
WCHAR
empty_stringW
[]
=
{
0
};
/* Protect read-only edit control from modification */
if
(
es
->
style
&
ES_READONLY
)
return
;
...
...
@@ -3674,7 +3672,6 @@ static void EDIT_WM_SetText(EDITSTATE *es, LPCWSTR text, BOOL unicode)
}
else
{
static
const
WCHAR
empty_stringW
[]
=
{
0
};
TRACE
(
"<NULL>
\n
"
);
EDIT_EM_ReplaceSel
(
es
,
FALSE
,
empty_stringW
,
FALSE
,
FALSE
);
}
...
...
@@ -4189,7 +4186,6 @@ static void EDIT_ImeComposition(HWND hwnd, LPARAM CompFlag, EDITSTATE *es)
if
(
es
->
composition_len
==
0
&&
es
->
selection_start
!=
es
->
selection_end
)
{
static
const
WCHAR
empty_stringW
[]
=
{
0
};
EDIT_EM_ReplaceSel
(
es
,
TRUE
,
empty_stringW
,
TRUE
,
TRUE
);
es
->
composition_start
=
es
->
selection_end
;
}
...
...
@@ -4929,7 +4925,6 @@ LRESULT EditWndProc_common( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam, B
case
WM_IME_ENDCOMPOSITION
:
if
(
es
->
composition_len
>
0
)
{
static
const
WCHAR
empty_stringW
[]
=
{
0
};
EDIT_EM_ReplaceSel
(
es
,
TRUE
,
empty_stringW
,
TRUE
,
TRUE
);
es
->
selection_end
=
es
->
selection_start
;
es
->
composition_len
=
0
;
...
...
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