summaryrefslogtreecommitdiff
path: root/ui/trayIcon.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/trayIcon.h')
-rw-r--r--ui/trayIcon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/trayIcon.h b/ui/trayIcon.h
index 94e75518..8c8797d4 100644
--- a/ui/trayIcon.h
+++ b/ui/trayIcon.h
@@ -11,7 +11,7 @@ public:
MinimizeToTray(wxTopLevelWindow* callerWnd, wxWindow* secondWnd = NULL); //ensure callerWind has longer lifetime!
~MinimizeToTray(); //show windows again
- void setToolTip(const wxString& toolTipText);
+ void setToolTip(const wxString& toolTipText, size_t 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