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
0a10ea00
Commit
0a10ea00
authored
May 11, 2005
by
Martin Fuchs
Committed by
Alexandre Julliard
May 11, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved version of Piotr Caban's bugfix patch "Fixed display bug".
parent
5590c8d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
winefile.c
programs/winefile/winefile.c
+7
-7
No files found.
programs/winefile/winefile.c
View file @
0a10ea00
/*
* Winefile
*
* Copyright 2000, 2003, 2004 Martin Fuchs
* Copyright 2000, 2003, 2004
, 2005
Martin Fuchs
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
...
...
@@ -2307,12 +2307,12 @@ static void calc_single_width(Pane* pane, int col)
/* insert listbox entries after index idx */
static
void
insert_entries
(
Pane
*
pane
,
Entry
*
dir
,
int
idx
)
static
int
insert_entries
(
Pane
*
pane
,
Entry
*
dir
,
int
idx
)
{
Entry
*
entry
=
dir
;
if
(
!
entry
)
return
;
return
idx
;
ShowWindow
(
pane
->
hwnd
,
SW_HIDE
);
...
...
@@ -2337,13 +2337,13 @@ static void insert_entries(Pane* pane, Entry* dir, int idx)
ListBox_InsertItemData
(
pane
->
hwnd
,
idx
,
entry
);
if
(
pane
->
treePane
&&
entry
->
expanded
)
{
insert_entries
(
pane
,
entry
->
down
,
idx
);
idx
=
ListBox_GetCount
(
pane
->
hwnd
)
-
1
;
}
if
(
pane
->
treePane
&&
entry
->
expanded
)
idx
=
insert_entries
(
pane
,
entry
->
down
,
idx
);
}
ShowWindow
(
pane
->
hwnd
,
SW_SHOW
);
return
idx
;
}
...
...
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