Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
366c0a16
Commit
366c0a16
authored
Dec 22, 2000
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Dec 22, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix remaining signed/unsigned mismatches.
parent
d549f690
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
edit.c
controls/edit.c
+3
-3
No files found.
controls/edit.c
View file @
366c0a16
...
@@ -83,7 +83,7 @@ typedef struct
...
@@ -83,7 +83,7 @@ typedef struct
INT
undo_insert_count
;
/* number of characters inserted in sequence */
INT
undo_insert_count
;
/* number of characters inserted in sequence */
UINT
undo_position
;
/* character index of the insertion and deletion */
UINT
undo_position
;
/* character index of the insertion and deletion */
LPWSTR
undo_text
;
/* deleted text */
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_start
;
/* == selection_end if no selection */
INT
selection_end
;
/* == current caret position */
INT
selection_end
;
/* == current caret position */
WCHAR
password_char
;
/* == 0 if no password char, and for multi line controls */
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
...
@@ -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_InvalidateText
(
WND
*
wnd
,
EDITSTATE
*
es
,
INT
start
,
INT
end
);
static
void
EDIT_LockBuffer
(
WND
*
wnd
,
EDITSTATE
*
es
);
static
void
EDIT_LockBuffer
(
WND
*
wnd
,
EDITSTATE
*
es
);
static
BOOL
EDIT_MakeFit
(
WND
*
wnd
,
EDITSTATE
*
es
,
UINT
size
);
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_MoveBackward
(
WND
*
wnd
,
EDITSTATE
*
es
,
BOOL
extend
);
static
void
EDIT_MoveEnd
(
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
);
static
void
EDIT_MoveForward
(
WND
*
wnd
,
EDITSTATE
*
es
,
BOOL
extend
);
...
@@ -1672,7 +1672,7 @@ static BOOL EDIT_MakeFit(WND *wnd, EDITSTATE *es, UINT size)
...
@@ -1672,7 +1672,7 @@ static BOOL EDIT_MakeFit(WND *wnd, EDITSTATE *es, UINT size)
* Try to fit size + 1 bytes in the undo buffer.
* 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
;
UINT
alloc_size
;
...
...
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