Skip to content

Commit

Permalink
Merge pull request #176 from rseanhall/4598
Browse files Browse the repository at this point in the history
Fix doc bug 4598 while backporting some things from wix4.
  • Loading branch information
barnson committed Nov 23, 2014
2 parents 59d6e99 + efb023a commit e4fb7bf
Show file tree
Hide file tree
Showing 6 changed files with 377 additions and 167 deletions.
2 changes: 2 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* SeanHall: WIXBUG:4598 - Fix thmutil documentation. Also backport some thmutil features/fixes from wix4.

* BobArnson: WIXBUG:4580 - Check bit mask appropriately for Burn system variables.

* SamuelS: WIXFEAT:4543 - Allow Pyro to exclude empty patch transforms.
Expand Down
4 changes: 2 additions & 2 deletions src/ext/SqlExtension/wixlib/SqlExtension.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
<EmbeddedResource Include="en-us.wxl" />
<EmbeddedResource Include="es-es.wxl" />
<EmbeddedResource Include="ja-jp.wxl" />
<EmbeddedResource Include="pt-pt.wxl" />
<EmbeddedResource Include="pt-br.wxl" />
<EmbeddedResource Include="pt-pt.wxl" />
<EmbeddedResource Include="pt-br.wxl" />
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/libs/dutil/dutil.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
<TargetName>dutil</TargetName>
<MultiTargetLibrary>true</MultiTargetLibrary>
</PropertyGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.props" />
<ItemGroup>
<ClCompile Include="acl2util.cpp" />
<ClCompile Include="aclutil.cpp" />
Expand Down
8 changes: 7 additions & 1 deletion src/libs/dutil/inc/thmutil.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ struct THEME_COLUMN
{
LPWSTR pszName;
UINT uStringId;
int nBaseWidth;
int nWidth;
BOOL fExpands;
};


Expand Down Expand Up @@ -155,12 +157,16 @@ struct THEME
{
WORD wId;

BOOL fAutoResize;

DWORD dwStyle;
DWORD dwFontId;
HANDLE hIcon;
LPWSTR sczCaption;
int nHeight;
int nMinimumHeight;
int nWidth;
int nMinimumWidth;
int nSourceX;
int nSourceY;
UINT uStringId;
Expand Down Expand Up @@ -248,7 +254,7 @@ DAPI_(void) ThemeUnloadControls(
);

/********************************************************************
ThemeLocalize - Localizes all of the strings in the them.
ThemeLocalize - Localizes all of the strings in the theme.
*******************************************************************/
DAPI_(HRESULT) ThemeLocalize(
Expand Down
Loading

0 comments on commit e4fb7bf

Please sign in to comment.