Skip to content

Commit

Permalink
Delete misplaced extra read of Form.Font (for #3)
Browse files Browse the repository at this point in the history
  • Loading branch information
chelh committed Jan 31, 2017
1 parent 4b59758 commit e2f78dd
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion VbaSyncLib/FrxObjects/FormControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ internal class FormControl {
ScrollBars = new FormScrollBarFlags(PropMask.HasScrollBars ? r.ReadByte() : (byte)0);
GroupCount = PropMask.HasGroupCount ? r.ReadInt32() : 0;
// captionCcb is possibly here instead of where it's indicated in [MS-OFORMS]?
if (PropMask.HasFont) r.Skip2Bytes();
if (PropMask.HasMouseIcon) r.Skip2Bytes();
Cycle = PropMask.HasCycle ? r.ReadCycle() : Cycle.AllForms;
SpecialEffect = PropMask.HasSpecialEffect ? r.ReadSpecialEffect() : SpecialEffect.Flat;
Expand Down

0 comments on commit e2f78dd

Please sign in to comment.