Skip to content

Commit

Permalink
Updated C++# to fix crashes when loading GUI from a Qt *.ui file.
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitar Dobrev <[email protected]>
  • Loading branch information
ddobrev committed Nov 13, 2015
1 parent bf52419 commit 1a67694
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.0.3 - 13.11.2015
Fixed:
- Crashes when loading GUI from a *.ui file using QFormBuilder.

0.0.2 - 5.11.2015
Fixed:
- A crash when using QFormLayout.
Expand Down
1 change: 1 addition & 0 deletions QtSharp/QtSharp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ public void Setup(Driver driver)
driver.Options.addIncludeDirs(Path.Combine(this.includePath, qtModule));
driver.Options.addLibraryDirs(this.libraryPath);
driver.Options.Libraries.Add(this.library);
driver.Options.ExplicitlyPatchedVirtualFunctions.Add("qt_metacall");
string dir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
switch (this.module)
{
Expand Down

0 comments on commit 1a67694

Please sign in to comment.