Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Joan Roque-Worcel
wine
Commits
366c0a16
Commit
366c0a16
authored
24 years ago
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
24 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix remaining signed/unsigned mismatches.
parent
d549f690
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
controls/edit.c
+3
-3
3 additions, 3 deletions
controls/edit.c
with
3 additions
and
3 deletions
controls/edit.c
+
3
−
3
View file @
366c0a16
...
...
@@ -83,7 +83,7 @@ typedef struct
INT
undo_insert_count
;
/* number of characters inserted in sequence */
UINT
undo_position
;
/* character index of the insertion and deletion */
LPWSTR
undo_text
;
/* deleted text */
INT
undo_buffer_size
;
/* size of the deleted text buffer */
U
INT
undo_buffer_size
;
/* size of the deleted text buffer */
INT
selection_start
;
/* == selection_end if no selection */
INT
selection_end
;
/* == current caret position */
WCHAR
password_char
;
/* == 0 if no password char, and for multi line controls */
...
...
@@ -182,7 +182,7 @@ static void EDIT_GetLineRect(WND *wnd, EDITSTATE *es, INT line, INT scol, INT ec
static
void
EDIT_InvalidateText
(
WND
*
wnd
,
EDITSTATE
*
es
,
INT
start
,
INT
end
);
static
void
EDIT_LockBuffer
(
WND
*
wnd
,
EDITSTATE
*
es
);
static
BOOL
EDIT_MakeFit
(
WND
*
wnd
,
EDITSTATE
*
es
,
UINT
size
);
static
BOOL
EDIT_MakeUndoFit
(
EDITSTATE
*
es
,
INT
size
);
static
BOOL
EDIT_MakeUndoFit
(
EDITSTATE
*
es
,
U
INT
size
);
static
void
EDIT_MoveBackward
(
WND
*
wnd
,
EDITSTATE
*
es
,
BOOL
extend
);
static
void
EDIT_MoveEnd
(
WND
*
wnd
,
EDITSTATE
*
es
,
BOOL
extend
);
static
void
EDIT_MoveForward
(
WND
*
wnd
,
EDITSTATE
*
es
,
BOOL
extend
);
...
...
@@ -1672,7 +1672,7 @@ static BOOL EDIT_MakeFit(WND *wnd, EDITSTATE *es, UINT size)
* Try to fit size + 1 bytes in the undo buffer.
*
*/
static
BOOL
EDIT_MakeUndoFit
(
EDITSTATE
*
es
,
INT
size
)
static
BOOL
EDIT_MakeUndoFit
(
EDITSTATE
*
es
,
U
INT
size
)
{
UINT
alloc_size
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment