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
783b5b49
Commit
783b5b49
authored
Feb 15, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Feb 16, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Remove some more useless asserts.
parent
82c41bb5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
treeview.c
dlls/comctl32/treeview.c
+0
-4
No files found.
dlls/comctl32/treeview.c
View file @
783b5b49
...
...
@@ -405,8 +405,6 @@ TREEVIEW_GetPrevListItem(const TREEVIEW_INFO *infoPtr, const TREEVIEW_ITEM *tvIt
static
TREEVIEW_ITEM
*
TREEVIEW_GetNextListItem
(
const
TREEVIEW_INFO
*
infoPtr
,
const
TREEVIEW_ITEM
*
tvItem
)
{
assert
(
tvItem
!=
NULL
);
/*
* If this item has children and is expanded, return the first child
*/
...
...
@@ -1047,7 +1045,6 @@ static void
TREEVIEW_InsertBefore
(
TREEVIEW_ITEM
*
newItem
,
TREEVIEW_ITEM
*
sibling
,
TREEVIEW_ITEM
*
parent
)
{
assert
(
newItem
!=
NULL
);
assert
(
parent
!=
NULL
);
if
(
sibling
!=
NULL
)
...
...
@@ -1080,7 +1077,6 @@ static void
TREEVIEW_InsertAfter
(
TREEVIEW_ITEM
*
newItem
,
TREEVIEW_ITEM
*
sibling
,
TREEVIEW_ITEM
*
parent
)
{
assert
(
newItem
!=
NULL
);
assert
(
parent
!=
NULL
);
if
(
sibling
!=
NULL
)
...
...
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