From f4a6d3fdbcffecaf6ce8c21245460b67d834b19c Mon Sep 17 00:00:00 2001 From: Karsten Heimrich Date: Tue, 1 Nov 2016 12:13:43 +0100 Subject: Style change: Use string.Empty where possible Change-Id: I4cc855da83e549d7f1c654aa9c96cf1ed8db6409 Reviewed-by: Oliver Wolff --- src/qtprojectlib/ExportProjectDialog.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/qtprojectlib/ExportProjectDialog.cs') diff --git a/src/qtprojectlib/ExportProjectDialog.cs b/src/qtprojectlib/ExportProjectDialog.cs index b76d63b6..b15a03fe 100644 --- a/src/qtprojectlib/ExportProjectDialog.cs +++ b/src/qtprojectlib/ExportProjectDialog.cs @@ -329,7 +329,7 @@ namespace QtProjectLib currentOpt = (ProFileOption) currentPro.Options[optionComboBox.SelectedIndex]; UpdateCurrentListItem(); - optionTextBox.Text = ""; + optionTextBox.Text = string.Empty; // update comment field commentLabel.Text = currentOpt.Comment; @@ -408,7 +408,7 @@ namespace QtProjectLib optionListBox.SelectedIndex = index; if (index < 0) { - optionTextBox.Text = ""; + optionTextBox.Text = string.Empty; UpdateButtons(); } } -- cgit v1.2.3