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
871fbd1f
Commit
871fbd1f
authored
Mar 04, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Mar 04, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't clear ES_AUTO[HV]SCROLL in the edit control created by
richedit.
parent
74e2cfb6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
richedit.c
dlls/richedit/richedit.c
+1
-6
No files found.
dlls/richedit/richedit.c
View file @
871fbd1f
...
...
@@ -114,7 +114,6 @@ static LRESULT WINAPI RICHED32_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
LPARAM
lParam
)
{
LONG
newstyle
=
0
;
LONG
style
=
0
;
RTFControl_Info
*
info
;
CHARRANGE
*
cr
;
...
...
@@ -141,11 +140,7 @@ static LRESULT WINAPI RICHED32_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
/* remove SCROLLBARS from the current window style */
info
->
hwndParent
=
((
LPCREATESTRUCTA
)
lParam
)
->
hwndParent
;
newstyle
=
style
=
((
LPCREATESTRUCTA
)
lParam
)
->
style
;
newstyle
&=
~
WS_HSCROLL
;
newstyle
&=
~
WS_VSCROLL
;
newstyle
&=
~
ES_AUTOHSCROLL
;
newstyle
&=
~
ES_AUTOVSCROLL
;
newstyle
=
((
LPCREATESTRUCTA
)
lParam
)
->
style
;
newstyle
&=
~
ES_NUMBER
;
/* Reused as ES_DISABLENOSCROLL */
SetWindowLongA
(
hwnd
,
GWL_STYLE
,
newstyle
);
...
...
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