Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/tooltip.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ class CToolTip : public CWindow
// so there will not be unintended tooltip displays.
void SuppressToolTipOnCurrentMousePos();

// Returns TRUE if the text can be shown; returns FALSE if no new text was supplied.
// If considerCursor==TRUE, it checks the cursor and moves the tooltip under it.
// If modal==TRUE, it starts a message loop that watches for tooltip-closing messages and returns only after it fades out.
// Returns TRUE if the text is shown; returns FALSE if no new text was supplied.
// If considerCursor==TRUE, it checks the cursor and moves the tooltip below it.
// If modal==TRUE, it starts a message loop that watches for messages to close the tooltip and returns only after it is hidden.
BOOL Show(int x, int y, BOOL considerCursor, BOOL modal, HWND hParent);

// extinguishes the tooltip
Expand Down
Loading