mirror of
https://github.com/reactos/wine.git
synced 2025-01-27 23:13:34 +00:00
shell32: Indentation fix.
This commit is contained in:
parent
d7d1e40240
commit
1d7a407f6d
@ -56,9 +56,9 @@ BOOL HCR_MapTypeToValueW(LPCWSTR szExtension, LPWSTR szFileType, LONG len, BOOL
|
||||
|
||||
TRACE("%s %p\n", debugstr_w(szExtension), szFileType);
|
||||
|
||||
/* added because we do not want to have double dots */
|
||||
if (szExtension[0] == '.')
|
||||
bPrependDot = 0;
|
||||
/* added because we do not want to have double dots */
|
||||
if (szExtension[0] == '.')
|
||||
bPrependDot = 0;
|
||||
|
||||
if (bPrependDot)
|
||||
szTemp[0] = '.';
|
||||
@ -90,9 +90,9 @@ BOOL HCR_MapTypeToValueA(LPCSTR szExtension, LPSTR szFileType, LONG len, BOOL bP
|
||||
|
||||
TRACE("%s %p\n", szExtension, szFileType);
|
||||
|
||||
/* added because we do not want to have double dots */
|
||||
if (szExtension[0] == '.')
|
||||
bPrependDot = 0;
|
||||
/* added because we do not want to have double dots */
|
||||
if (szExtension[0] == '.')
|
||||
bPrependDot = 0;
|
||||
|
||||
if (bPrependDot)
|
||||
szTemp[0] = '.';
|
||||
@ -252,7 +252,7 @@ static BOOL HCR_RegGetDefaultIconA(HKEY hkey, LPSTR szDest, DWORD len, int* pico
|
||||
|
||||
if (!RegQueryValueExA(hkey, NULL, 0, &dwType, (LPBYTE)szDest, &len))
|
||||
{
|
||||
if (dwType == REG_EXPAND_SZ)
|
||||
if (dwType == REG_EXPAND_SZ)
|
||||
{
|
||||
ExpandEnvironmentStringsA(szDest, sTemp, MAX_PATH);
|
||||
lstrcpynA(szDest, sTemp, len);
|
||||
|
@ -759,7 +759,7 @@ static void Control_DoLaunch(CPanel* panel, HWND hWnd, LPCWSTR wszCmd)
|
||||
}
|
||||
}
|
||||
if (ch == '\0') break;
|
||||
beg = end + 1;
|
||||
beg = end + 1;
|
||||
if (ch == ' ') while (end[1] == ' ') end++;
|
||||
}
|
||||
end++;
|
||||
|
@ -259,21 +259,21 @@ void _dbg_ILSimpleGetText (LPCITEMIDLIST pidl, LPSTR szOut, UINT uOutSize)
|
||||
|
||||
void pdump (LPCITEMIDLIST pidl)
|
||||
{
|
||||
LPCITEMIDLIST pidltemp = pidl;
|
||||
LPCITEMIDLIST pidltemp = pidl;
|
||||
|
||||
if (!TRACE_ON(pidl)) return;
|
||||
if (!TRACE_ON(pidl)) return;
|
||||
|
||||
if (! pidltemp)
|
||||
{
|
||||
MESSAGE ("-------- pidl=NULL (Desktop)\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
MESSAGE ("-------- pidl=%p\n", pidl);
|
||||
if (pidltemp->mkid.cb)
|
||||
{
|
||||
do
|
||||
{
|
||||
if (! pidltemp)
|
||||
{
|
||||
MESSAGE ("-------- pidl=NULL (Desktop)\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
MESSAGE ("-------- pidl=%p\n", pidl);
|
||||
if (pidltemp->mkid.cb)
|
||||
{
|
||||
do
|
||||
{
|
||||
if (_ILIsUnicode(pidltemp))
|
||||
{
|
||||
DWORD dwAttrib = 0;
|
||||
@ -309,16 +309,16 @@ void pdump (LPCITEMIDLIST pidl)
|
||||
debugstr_a(szName), debugstr_a(szLongName), debugstr_a(szShortName));
|
||||
}
|
||||
|
||||
pidltemp = _dbg_ILGetNext(pidltemp);
|
||||
pidltemp = _dbg_ILGetNext(pidltemp);
|
||||
|
||||
} while (pidltemp && pidltemp->mkid.cb);
|
||||
}
|
||||
else
|
||||
{
|
||||
MESSAGE ("empty pidl (Desktop)\n");
|
||||
}
|
||||
pcheck(pidl);
|
||||
}
|
||||
} while (pidltemp && pidltemp->mkid.cb);
|
||||
}
|
||||
else
|
||||
{
|
||||
MESSAGE ("empty pidl (Desktop)\n");
|
||||
}
|
||||
pcheck(pidl);
|
||||
}
|
||||
}
|
||||
|
||||
static void dump_pidl_hex( LPCITEMIDLIST pidl )
|
||||
|
@ -45,8 +45,8 @@ BOOL AddToEnumList(IEnumIDListImpl *This, LPITEMIDLIST pidl)
|
||||
|
||||
TRACE("(%p)->(pidl=%p)\n",This,pidl);
|
||||
|
||||
if (!This || !pidl)
|
||||
return FALSE;
|
||||
if (!This || !pidl)
|
||||
return FALSE;
|
||||
|
||||
pNew = SHAlloc(sizeof(*pNew));
|
||||
if(pNew)
|
||||
|
@ -380,19 +380,19 @@ static BOOL ShellView_CreateList (IShellViewImpl * This)
|
||||
This->ListViewSortInfo.nHeaderID = -1;
|
||||
This->ListViewSortInfo.nLastHeaderID = -1;
|
||||
|
||||
if (This->FolderSettings.fFlags & FWF_DESKTOP) {
|
||||
/*
|
||||
* FIXME: look at the registry value
|
||||
* HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ListviewShadow
|
||||
* and activate drop shadows if necessary
|
||||
*/
|
||||
if (0)
|
||||
SendMessageW(This->hWndList, LVM_SETTEXTBKCOLOR, 0, CLR_NONE);
|
||||
else
|
||||
SendMessageW(This->hWndList, LVM_SETTEXTBKCOLOR, 0, GetSysColor(COLOR_DESKTOP));
|
||||
if (This->FolderSettings.fFlags & FWF_DESKTOP) {
|
||||
/*
|
||||
* FIXME: look at the registry value
|
||||
* HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ListviewShadow
|
||||
* and activate drop shadows if necessary
|
||||
*/
|
||||
if (0)
|
||||
SendMessageW(This->hWndList, LVM_SETTEXTBKCOLOR, 0, CLR_NONE);
|
||||
else
|
||||
SendMessageW(This->hWndList, LVM_SETTEXTBKCOLOR, 0, GetSysColor(COLOR_DESKTOP));
|
||||
|
||||
SendMessageW(This->hWndList, LVM_SETTEXTCOLOR, 0, RGB(255,255,255));
|
||||
}
|
||||
SendMessageW(This->hWndList, LVM_SETTEXTCOLOR, 0, RGB(255,255,255));
|
||||
}
|
||||
|
||||
/* UpdateShellSettings(); */
|
||||
return TRUE;
|
||||
|
Loading…
x
Reference in New Issue
Block a user