Skip to content

Commit

Permalink
Removed sealed overrides from the bindings by updating C++#.
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitar Dobrev <[email protected]>
  • Loading branch information
ddobrev committed Oct 1, 2016
1 parent e5a240a commit f3f5b1c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions QtSharp.CLI/QtSharp.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -63,27 +63,27 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="CppSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\CppSharp.0.7.2\lib\CppSharp.dll</HintPath>
<HintPath>..\packages\CppSharp.0.7.3\lib\CppSharp.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="CppSharp.AST, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\CppSharp.0.7.2\lib\CppSharp.AST.dll</HintPath>
<HintPath>..\packages\CppSharp.0.7.3\lib\CppSharp.AST.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="CppSharp.Generator, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\CppSharp.0.7.2\lib\CppSharp.Generator.dll</HintPath>
<HintPath>..\packages\CppSharp.0.7.3\lib\CppSharp.Generator.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="CppSharp.Parser, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\CppSharp.0.7.2\lib\CppSharp.Parser.dll</HintPath>
<HintPath>..\packages\CppSharp.0.7.3\lib\CppSharp.Parser.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="CppSharp.Parser.CLI, Version=0.0.0.0, Culture=neutral, processorArchitecture=AMD64">
<HintPath>..\packages\CppSharp.0.7.2\lib\CppSharp.Parser.CLI.dll</HintPath>
<HintPath>..\packages\CppSharp.0.7.3\lib\CppSharp.Parser.CLI.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="CppSharp.Runtime, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\CppSharp.0.7.2\lib\CppSharp.Runtime.dll</HintPath>
<HintPath>..\packages\CppSharp.0.7.3\lib\CppSharp.Runtime.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
2 changes: 1 addition & 1 deletion QtSharp.CLI/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Baseclass.Contrib.Nuget.Output" version="2.1.0" targetFramework="net451" />
<package id="CppSharp" version="0.7.2" targetFramework="net451" developmentDependency="true" />
<package id="CppSharp" version="0.7.3" targetFramework="net451" developmentDependency="true" />
</packages>
2 changes: 1 addition & 1 deletion QtSharp/DocGeneration/Documentation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ public void DocumentProperty(Property property)

var properties = expansions.Where(e => e.Text.Contains("Q_PROPERTY") || e.Text.Contains("QDOC_PROPERTY"));
string alternativeName = property.Name.Length == 1 ? property.Name :
"is" + StringHelpers.UppercaseFirst(property.Name);
"is" + StringHelpers.Capitalize(property.Name);
foreach (var macroExpansion in properties)
{
var name = macroExpansion.Text.Split(' ')[1];
Expand Down
2 changes: 1 addition & 1 deletion QtSharp/QtSharp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public void Setup(Driver driver)
module.Headers.Add(qtModule);
var moduleName = qtModule.Substring(qt.Length);
// some Qt modules have their own name-spaces
if (moduleName == "Charts" || moduleName == "QtDataVisualization" ||
if (moduleName == "Charts" || moduleName == "DataVisualization" ||
moduleName.StartsWith("3D", System.StringComparison.Ordinal))
{
module.OutputNamespace = string.Empty;
Expand Down
12 changes: 6 additions & 6 deletions QtSharp/QtSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,27 +38,27 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="CppSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\CppSharp.0.7.2\lib\CppSharp.dll</HintPath>
<HintPath>..\packages\CppSharp.0.7.3\lib\CppSharp.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="CppSharp.AST, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\CppSharp.0.7.2\lib\CppSharp.AST.dll</HintPath>
<HintPath>..\packages\CppSharp.0.7.3\lib\CppSharp.AST.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="CppSharp.Generator, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\CppSharp.0.7.2\lib\CppSharp.Generator.dll</HintPath>
<HintPath>..\packages\CppSharp.0.7.3\lib\CppSharp.Generator.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="CppSharp.Parser, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\CppSharp.0.7.2\lib\CppSharp.Parser.dll</HintPath>
<HintPath>..\packages\CppSharp.0.7.3\lib\CppSharp.Parser.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="CppSharp.Parser.CLI, Version=0.0.0.0, Culture=neutral, processorArchitecture=AMD64">
<HintPath>..\packages\CppSharp.0.7.2\lib\CppSharp.Parser.CLI.dll</HintPath>
<HintPath>..\packages\CppSharp.0.7.3\lib\CppSharp.Parser.CLI.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="CppSharp.Runtime, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\CppSharp.0.7.2\lib\CppSharp.Runtime.dll</HintPath>
<HintPath>..\packages\CppSharp.0.7.3\lib\CppSharp.Runtime.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="HtmlAgilityPack, Version=1.4.9.5, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
Expand Down
2 changes: 1 addition & 1 deletion QtSharp/packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Baseclass.Contrib.Nuget.Output" version="2.1.0" targetFramework="net451" />
<package id="CppSharp" version="0.7.2" targetFramework="net451" developmentDependency="true" />
<package id="CppSharp" version="0.7.3" targetFramework="net451" developmentDependency="true" />
<package id="HtmlAgilityPack" version="1.4.9.5" targetFramework="net451" />
<package id="zlib.net" version="1.0.4" targetFramework="net451" />
</packages>

0 comments on commit f3f5b1c

Please sign in to comment.