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
563d229b
Commit
563d229b
authored
Aug 13, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Aug 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Avoid TRUE:FALSE conditional expressions.
parent
4d28aeda
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
21 deletions
+10
-21
brsfolder.c
dlls/shell32/brsfolder.c
+1
-1
pidl.c
dlls/shell32/pidl.c
+1
-1
shellpath.c
dlls/shell32/shellpath.c
+4
-12
shfldr_fs.c
dlls/shell32/shfldr_fs.c
+1
-4
shlview.c
dlls/shell32/shlview.c
+3
-3
No files found.
dlls/shell32/brsfolder.c
View file @
563d229b
...
...
@@ -1024,7 +1024,7 @@ static INT_PTR CALLBACK BrsFolderDlgProc( HWND hWnd, UINT msg, WPARAM wParam,
case
BFFM_ENABLEOK
:
TRACE
(
"Enable %ld
\n
"
,
lParam
);
EnableWindow
(
GetDlgItem
(
hWnd
,
1
),
(
lParam
)
?
TRUE
:
FALSE
);
EnableWindow
(
GetDlgItem
(
hWnd
,
1
),
lParam
!=
0
);
break
;
case
BFFM_SETOKTEXT
:
/* unicode only */
...
...
dlls/shell32/pidl.c
View file @
563d229b
...
...
@@ -1814,7 +1814,7 @@ BOOL _ILIsDesktop(LPCITEMIDLIST pidl)
{
TRACE
(
"(%p)
\n
"
,
pidl
);
return
pidl
&&
pidl
->
mkid
.
cb
?
FALSE
:
TRUE
;
return
!
pidl
||
!
pidl
->
mkid
.
cb
;
}
BOOL
_ILIsMyComputer
(
LPCITEMIDLIST
pidl
)
...
...
dlls/shell32/shellpath.c
View file @
563d229b
...
...
@@ -2855,12 +2855,8 @@ BOOL WINAPI SHGetSpecialFolderPathA (
int
nFolder
,
BOOL
bCreate
)
{
return
(
SHGetFolderPathA
(
hwndOwner
,
nFolder
+
(
bCreate
?
CSIDL_FLAG_CREATE
:
0
),
NULL
,
0
,
szPath
))
==
S_OK
?
TRUE
:
FALSE
;
return
SHGetFolderPathA
(
hwndOwner
,
nFolder
+
(
bCreate
?
CSIDL_FLAG_CREATE
:
0
),
NULL
,
0
,
szPath
)
==
S_OK
;
}
/*************************************************************************
...
...
@@ -2872,12 +2868,8 @@ BOOL WINAPI SHGetSpecialFolderPathW (
int
nFolder
,
BOOL
bCreate
)
{
return
(
SHGetFolderPathW
(
hwndOwner
,
nFolder
+
(
bCreate
?
CSIDL_FLAG_CREATE
:
0
),
NULL
,
0
,
szPath
))
==
S_OK
?
TRUE
:
FALSE
;
return
SHGetFolderPathW
(
hwndOwner
,
nFolder
+
(
bCreate
?
CSIDL_FLAG_CREATE
:
0
),
NULL
,
0
,
szPath
)
==
S_OK
;
}
/*************************************************************************
...
...
dlls/shell32/shfldr_fs.c
View file @
563d229b
...
...
@@ -1705,10 +1705,7 @@ ISFDropTarget_DragEnter (IDropTarget * iface, IDataObject * pDataObject,
TRACE
(
"(%p)->(DataObject=%p)
\n
"
,
This
,
pDataObject
);
InitFormatEtc
(
fmt
,
This
->
cfShellIDList
,
TYMED_HGLOBAL
);
This
->
fAcceptFmt
=
(
S_OK
==
IDataObject_QueryGetData
(
pDataObject
,
&
fmt
))
?
TRUE
:
FALSE
;
This
->
fAcceptFmt
=
IDataObject_QueryGetData
(
pDataObject
,
&
fmt
)
==
S_OK
;
ISFDropTarget_QueryDrop
(
iface
,
dwKeyState
,
pdwEffect
);
return
S_OK
;
...
...
dlls/shell32/shlview.c
View file @
563d229b
...
...
@@ -290,9 +290,9 @@ static void CheckToolbar(IShellViewImpl * This)
if
(
IsInCommDlg
(
This
))
{
IShellBrowser_SendControlMsg
(
This
->
pShellBrowser
,
FCW_TOOLBAR
,
TB_CHECKBUTTON
,
FCIDM_TB_SMALLICON
,
(
This
->
FolderSettings
.
ViewMode
==
FVM_LIST
)
?
TRUE
:
FALSE
,
&
result
);
FCIDM_TB_SMALLICON
,
This
->
FolderSettings
.
ViewMode
==
FVM_LIST
,
&
result
);
IShellBrowser_SendControlMsg
(
This
->
pShellBrowser
,
FCW_TOOLBAR
,
TB_CHECKBUTTON
,
FCIDM_TB_REPORTVIEW
,
(
This
->
FolderSettings
.
ViewMode
==
FVM_DETAILS
)
?
TRUE
:
FALSE
,
&
result
);
FCIDM_TB_REPORTVIEW
,
This
->
FolderSettings
.
ViewMode
==
FVM_DETAILS
,
&
result
);
IShellBrowser_SendControlMsg
(
This
->
pShellBrowser
,
FCW_TOOLBAR
,
TB_ENABLEBUTTON
,
FCIDM_TB_SMALLICON
,
TRUE
,
&
result
);
IShellBrowser_SendControlMsg
(
This
->
pShellBrowser
,
FCW_TOOLBAR
,
TB_ENABLEBUTTON
,
...
...
@@ -606,7 +606,7 @@ static BOOLEAN LV_AddItem(IShellViewImpl * This, LPCITEMIDLIST pidl)
lvItem
.
lParam
=
(
LPARAM
)
ILClone
(
ILFindLastID
(
pidl
));
/*set the item's data*/
lvItem
.
pszText
=
LPSTR_TEXTCALLBACKW
;
/*get text on a callback basis*/
lvItem
.
iImage
=
I_IMAGECALLBACK
;
/*get the image on a callback basis*/
return
(
-
1
==
ListView_InsertItemW
(
This
->
hWndList
,
&
lvItem
))
?
FALSE
:
TRUE
;
return
ListView_InsertItemW
(
This
->
hWndList
,
&
lvItem
)
!=
-
1
;
}
/**********************************************************
...
...
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