Ticket #1375 (closed enhancement: fixed)
New design of 'Find File' dialog
Reported by: | andrew_b | Owned by: | andrew_b |
---|---|---|---|
Priority: | minor | Milestone: | 4.7.0-pre1 |
Component: | mc-core | Version: | master |
Keywords: | commited-master | Cc: | |
Blocked By: | Blocking: | #1385 | |
Branch state: | Votes for changeset: |
Description
The new design of 'Find File' dialog is proposed.
Change History
comment:1 Changed 15 years ago by andrew_b
- Status changed from new to accepted
- Owner set to andrew_b
- Keywords review added
comment:2 follow-up: ↓ 3 Changed 15 years ago by angel_il
look good...
maybe replace
if (var !=NULL)
to
if (a)
and
if (var == NULL)
to
if (!a)
if (var) g_free (var);
to
g_free (var);
comment:3 in reply to: ↑ 2 Changed 15 years ago by andrew_b
Replying to angel_il:
look good...
maybe replace
if (var !=NULL)to
if (a)and
if (var == NULL)to
if (!a)
No. I dislike that. 'a' is a pointer not a boolean. If I see if (a) I expect that 'a' is variable of boolean not something else.
I prefer strong typization as match as C allows that.
if (var) g_free (var);to
g_free (var);
Yes. g_free() is safety so there is not need the extra check.
comment:5 Changed 15 years ago by slavazanko
- Keywords vote-slavazanko approved added; review removed
comment:6 follow-up: ↓ 7 Changed 15 years ago by andrew_b
- Keywords commited-master added; vote-angel_il vote-slavazanko approved removed
- Status changed from accepted to testing
- Resolution set to fixed
Merged to master.
cnahgeset:d5f1442438a67ad8b4c890c90ba4fabfa047d901
Note: See
TracTickets for help on using
tickets.
1375_findfile_dialog branch is created. Parent branch: master.
Initial changeset:0197df062c7dcb957e2817bda04d4385aed206b8