We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf52419 commit 1a67694Copy full SHA for 1a67694
CHANGELOG
@@ -1,3 +1,7 @@
1
+0.0.3 - 13.11.2015
2
+Fixed:
3
+- Crashes when loading GUI from a *.ui file using QFormBuilder.
4
+
5
0.0.2 - 5.11.2015
6
Fixed:
7
- A crash when using QFormLayout.
QtSharp/QtSharp.cs
@@ -175,6 +175,7 @@ public void Setup(Driver driver)
175
driver.Options.addIncludeDirs(Path.Combine(this.includePath, qtModule));
176
driver.Options.addLibraryDirs(this.libraryPath);
177
driver.Options.Libraries.Add(this.library);
178
+ driver.Options.ExplicitlyPatchedVirtualFunctions.Add("qt_metacall");
179
string dir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
180
switch (this.module)
181
{
0 commit comments