We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b98d30 commit 8d5ecc9Copy full SHA for 8d5ecc9
Rubberduck.Core/UI/Controls/SearchBox.xaml.cs
@@ -54,12 +54,12 @@ public string Hint
54
}
55
56
57
- public ICommand ClearSearchCommand => new DelegateCommand(LogManager.GetCurrentClassLogger(), (arg) => Text = "");
+ public ICommand ClearSearchCommand => new DelegateCommand(LogManager.GetCurrentClassLogger(), (arg) => Text = string.Empty);
58
59
public SearchBox()
60
{
61
// design instance!
62
- Text = "";
+ Text = string.Empty;
63
Hint = "Search";
64
Width = 300;
65
Height = 25;
0 commit comments