Browse Source

Fixed the "select" and "remove" buttons in the SelectReferenceDialog.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2957 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Christian Hornung 18 years ago
parent
commit
ce70b63ac3
  1. 2
      src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/SelectReferenceDialog.cs

2
src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/SelectReferenceDialog.cs

@ -251,6 +251,7 @@ namespace ICSharpCode.SharpDevelop.Gui
this.selectButton.Size = new System.Drawing.Size(75, 23); this.selectButton.Size = new System.Drawing.Size(75, 23);
this.selectButton.TabIndex = 1; this.selectButton.TabIndex = 1;
this.selectButton.Text = "${res:Dialog.SelectReferenceDialog.SelectButton}"; this.selectButton.Text = "${res:Dialog.SelectReferenceDialog.SelectButton}";
this.selectButton.Click += new System.EventHandler(this.SelectReference);
// //
// removeButton // removeButton
// //
@ -260,6 +261,7 @@ namespace ICSharpCode.SharpDevelop.Gui
this.removeButton.Size = new System.Drawing.Size(75, 23); this.removeButton.Size = new System.Drawing.Size(75, 23);
this.removeButton.TabIndex = 4; this.removeButton.TabIndex = 4;
this.removeButton.Text = "${res:Global.RemoveButtonText}"; this.removeButton.Text = "${res:Global.RemoveButtonText}";
this.removeButton.Click += new System.EventHandler(this.RemoveReference);
// //
// referencesLabel // referencesLabel
// //

Loading…
Cancel
Save