Skip to content

Commit 3b097e1

Browse files
committed
Tabs => spaces
1 parent 5435b40 commit 3b097e1

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

External/Plugins/ProjectManager/Controls/OpenResourceForm.cs

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class OpenResourceForm : SmartForm
2121
private System.Windows.Forms.Label infoLabel;
2222
private System.Windows.Forms.TextBox textBox;
2323
private System.Windows.Forms.ListBox listBox;
24-
private System.Windows.Forms.CheckBox cbInClasspathsOnly;
24+
private System.Windows.Forms.CheckBox cbInClasspathsOnly;
2525
private System.Windows.Forms.CheckBox checkBox;
2626
private System.Windows.Forms.Button refreshButton;
2727

@@ -47,7 +47,7 @@ private void InitializeComponent()
4747
this.infoLabel = new System.Windows.Forms.Label();
4848
this.textBox = new System.Windows.Forms.TextBox();
4949
this.listBox = new System.Windows.Forms.ListBox();
50-
this.cbInClasspathsOnly = new System.Windows.Forms.CheckBox();
50+
this.cbInClasspathsOnly = new System.Windows.Forms.CheckBox();
5151
this.checkBox = new System.Windows.Forms.CheckBox();
5252
this.refreshButton = new System.Windows.Forms.Button();
5353
this.SuspendLayout();
@@ -79,23 +79,23 @@ private void InitializeComponent()
7979
this.refreshButton.Size = new System.Drawing.Size(26, 23);
8080
this.refreshButton.TabIndex = 4;
8181
this.refreshButton.Click += new EventHandler(RefreshButtonClick);
82-
//
83-
// cbInClasspathsOnly
84-
//
85-
this.cbInClasspathsOnly.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
86-
this.cbInClasspathsOnly.Location = new System.Drawing.Point(380, 9);
87-
this.cbInClasspathsOnly.Size = new System.Drawing.Size(26, 24);
88-
this.cbInClasspathsOnly.Text = "In Classpaths only";
89-
this.cbInClasspathsOnly.Name = "cbInClasspathsOnly";
90-
this.cbInClasspathsOnly.AutoSize = true;
91-
this.cbInClasspathsOnly.TabIndex = 2;
92-
this.cbInClasspathsOnly.Checked = false;
93-
this.cbInClasspathsOnly.CheckedChanged += new System.EventHandler(this.CbInClasspathsOnlyCheckedChanged);
82+
//
83+
// cbInClasspathsOnly
84+
//
85+
this.cbInClasspathsOnly.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
86+
this.cbInClasspathsOnly.Location = new System.Drawing.Point(380, 9);
87+
this.cbInClasspathsOnly.Size = new System.Drawing.Size(26, 24);
88+
this.cbInClasspathsOnly.Text = "In Classpaths only";
89+
this.cbInClasspathsOnly.Name = "cbInClasspathsOnly";
90+
this.cbInClasspathsOnly.AutoSize = true;
91+
this.cbInClasspathsOnly.TabIndex = 2;
92+
this.cbInClasspathsOnly.Checked = false;
93+
this.cbInClasspathsOnly.CheckedChanged += new System.EventHandler(this.CbInClasspathsOnlyCheckedChanged);
9494
//
9595
// checkBox
9696
//
9797
this.checkBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
98-
this.checkBox.Location = new System.Drawing.Point(480, 9);
98+
this.checkBox.Location = new System.Drawing.Point(480, 9);
9999
this.checkBox.Size = new System.Drawing.Size(26, 24);
100100
this.checkBox.Text = "Code files only";
101101
this.checkBox.Name = "checkBox";
@@ -122,7 +122,7 @@ private void InitializeComponent()
122122
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
123123
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
124124
this.ClientSize = new System.Drawing.Size(522, 340);
125-
this.Controls.Add(this.cbInClasspathsOnly);
125+
this.Controls.Add(this.cbInClasspathsOnly);
126126
this.Controls.Add(this.listBox);
127127
this.Controls.Add(this.textBox);
128128
this.Controls.Add(this.refreshButton);
@@ -166,7 +166,7 @@ private void InitializeGraphics()
166166
private void InitializeLocalization()
167167
{
168168
this.infoLabel.Text = TextHelper.GetString("Label.SearchString");
169-
this.cbInClasspathsOnly.Text = TextHelper.GetString("Label.InClasspathsOnly");
169+
this.cbInClasspathsOnly.Text = TextHelper.GetString("Label.InClasspathsOnly");
170170
this.checkBox.Text = TextHelper.GetString("Label.CodeFilesOnly");
171171
this.Text = " " + TextHelper.GetString("Title.OpenResource");
172172
}
@@ -400,7 +400,7 @@ public List<String> GetProjectFolders()
400400
{
401401
String projectFolder = Path.GetDirectoryName(PluginBase.CurrentProject.ProjectPath);
402402
List<String> folders = new List<String>();
403-
if (!cbInClasspathsOnly.Checked) folders.Add(projectFolder);
403+
if (!cbInClasspathsOnly.Checked) folders.Add(projectFolder);
404404
if (!PluginMain.Settings.SearchExternalClassPath) return folders;
405405
foreach (String path in PluginBase.CurrentProject.SourcePaths)
406406
{

0 commit comments

Comments
 (0)