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

github.com/mono/guiunit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <llsan@microsoft.com>2021-05-10 17:29:27 +0300
committerGitHub <noreply@github.com>2021-05-10 17:29:27 +0300
commitbde83898787fd4da3e570167f7559be046999725 (patch)
treecd7ebf2f0429c62b4b2d047f6ca7ca486438626d
parentccdbe48e25f3805705615a8b4f5af9ec4370f835 (diff)
parent9cb1a9154e0fd3c5f6fd8924229ec4f5bc90b54d (diff)
Merge pull request #22 from mono/dev/lluis/fix-xammac-dll-name
Fix Xwt.Mac dll name
-rw-r--r--src/framework/GuiUnit/XwtMainLoopIntegration.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/GuiUnit/XwtMainLoopIntegration.cs b/src/framework/GuiUnit/XwtMainLoopIntegration.cs
index 3ffcbeb..5d20936 100644
--- a/src/framework/GuiUnit/XwtMainLoopIntegration.cs
+++ b/src/framework/GuiUnit/XwtMainLoopIntegration.cs
@@ -11,7 +11,7 @@ namespace GuiUnit
Tuple<string,string>[] backends = new[] {
Tuple.Create ("Xwt.Gtk.dll", "Xwt.GtkBackend.GtkEngine, Xwt.Gtk"),
Tuple.Create ("Xwt.WPF.dll", "Xwt.WPFBackend.WPFEngine, Xwt.WPF"),
- Tuple.Create ("Xwt.Mac.dll", "Xwt.Mac.MacEngine, Xwt.Mac")
+ Tuple.Create ("Xwt.XamMac.dll", "Xwt.Mac.MacEngine, Xwt.XamMac")
};
Type Application {