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:
authorMatt Ward <matt.ward@microsoft.com>2021-02-24 01:10:13 +0300
committerMatt Ward <matt.ward@microsoft.com>2021-02-24 01:10:13 +0300
commit1d3cd2d05a062f41de07c397a187537bcad81370 (patch)
tree6f413a7ff8c55111347a9ef7d5749da10854ec56
parent18cfa13ad7e69730d5f1de5950302ff00c903c71 (diff)
Fix XWT assembly and type names when locating XWT backends
The XwtMainLoopIntegration was looking for the Xwt.MacEngine in the wrong dll (Xwt.Mac.dll) and the wrong assembly (Xwt.Mac). Updated the dll name (Xwt.XamMac.dll) and the assembly name (Xwt.XamMac).
-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 {