Skip to content

Commit 277171d

Browse files
committed
Use empty string
1 parent 13656d1 commit 277171d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Flow.Launcher.Infrastructure/QuickSwitch/Models/WindowsDialog.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static unsafe string GetClassName(HWND handle)
4040
{
4141
return PInvoke.GetClassName(handle, buf, 256) switch
4242
{
43-
0 => null,
43+
0 => string.Empty,
4444
_ => new string(buf),
4545
};
4646
}
@@ -91,6 +91,7 @@ public string GetCurrentFile()
9191

9292
public bool OpenFolder(string path)
9393
{
94+
// TODO
9495
return false;
9596
}
9697

0 commit comments

Comments
 (0)