Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Ungureanu <marius.ungureanu@xamarin.com>2015-11-23 13:23:03 +0300
committerMarius Ungureanu <marius.ungureanu@xamarin.com>2015-11-23 13:23:03 +0300
commit883443b892b5c0bf59f3b728f85932d31e0a0d34 (patch)
tree4a0425efc4c659e92fad449483e5fdf75d524f2e /main/src/addins/ILAsmBinding
parentf5fa189aa2f72d37e687d615fd0f098b0859c0b2 (diff)
[Ide] Switch OptionsPanel to Control.
Diffstat (limited to 'main/src/addins/ILAsmBinding')
-rw-r--r--main/src/addins/ILAsmBinding/Gui/CompilerParametersPanelWidget.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/addins/ILAsmBinding/Gui/CompilerParametersPanelWidget.cs b/main/src/addins/ILAsmBinding/Gui/CompilerParametersPanelWidget.cs
index 9bf943be95..e4fa67756f 100644
--- a/main/src/addins/ILAsmBinding/Gui/CompilerParametersPanelWidget.cs
+++ b/main/src/addins/ILAsmBinding/Gui/CompilerParametersPanelWidget.cs
@@ -24,6 +24,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
+using MonoDevelop.Components;
using MonoDevelop.Core;
using MonoDevelop.Projects;
using Gtk;
@@ -67,7 +68,7 @@ namespace ILAsmBinding
{
CompilerParametersPanelWidget widget;
- public override Widget CreatePanelWidget()
+ public override Control CreatePanelWidget()
{
return widget = new CompilerParametersPanelWidget ();
}