Skip to content

Commit

Permalink
Fixing some compiler warnings potentially related to Issue #7
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Lospinoso committed Dec 8, 2016
1 parent 47a27c7 commit 0921d43
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BeamgunInstaller/Library.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<Property Id="WixShellExecTarget" Value="[#BeamgunApp]" />
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Launch Beamgun" />
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOX" Value="1"/>
<CustomAction Id="LaunchApplication" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="no" />
<CustomAction Id="LaunchApplication" BinaryKey="WixCA" DllEntry="WixShellExec"/>

<UI>
<UIRef Id="WixUI_Minimal" />
Expand Down
4 changes: 4 additions & 0 deletions NotifyIconWpf/Interop/WindowMessageSink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,10 @@ private void ProcessWindowMessage(uint msg, IntPtr wParam, IntPtr lParam)
//double click with middle mouse button - do not trigger event
break;

case 0x400:
// I don't know what this is, but it happens on startup.
break;

case 0x402:
var listener = BalloonToolTipChanged;
if (listener != null) listener(true);
Expand Down
2 changes: 0 additions & 2 deletions NotifyIconWpf/TaskbarIcon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,6 @@ private bool IsPopupOpen
}
}

private double scalingFactor = double.NaN;

#endregion

#region Construction
Expand Down

0 comments on commit 0921d43

Please sign in to comment.