summaryrefslogtreecommitdiff
path: root/ui/tray_icon.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/tray_icon.h')
-rw-r--r--ui/tray_icon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/tray_icon.h b/ui/tray_icon.h
index af9200d1..8b5b5851 100644
--- a/ui/tray_icon.h
+++ b/ui/tray_icon.h
@@ -17,7 +17,7 @@ public:
MinimizeToTray(wxTopLevelWindow* callerWnd, wxTopLevelWindow* secondWnd = NULL); //ensure both windows have longer lifetime than this instance!
~MinimizeToTray(); //show windows again
- void setToolTip(const wxString& toolTipText, size_t percent = 0); //percent (optional), number between [0, 100], for small progress indicator
+ void setToolTip(const wxString& toolTipText, double percent = 0); //percent (optional), number between [0, 100], for small progress indicator
void keepHidden(); //do not show windows again: avoid window flashing shortly before it is destroyed
private:
bgstack15