TShellTreeView: ifdef some code which only applies to windows (desktop). Reported by rens groenewegen.

This commit is contained in:
Bart 2024-01-23 23:31:30 +01:00
parent b3ccc3d69a
commit 9f02bfab4a

View File

@ -1512,7 +1512,9 @@ begin
else
FQRootPath := '';
RootIsAbsolute := (FQRootPath = '') or (FQRootPath = PathDelim)
or ((Length(FQRootPath) = 3) and (FQRootPath[2] = ':') and (FQRootPath[3] = PathDelim));
{$ifdef mswindows}
or ((Length(FQRootPath) = 3) and (FQRootPath[2] = ':') and (FQRootPath[3] = PathDelim))
{$endif};
{$ifdef debug_shellctrls}
debugln(['SetPath: FQRootPath = ',fqrootpath]);