Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

GetToolTipText

6 views
Skip to first unread message

teemo10

unread,
Jul 22, 2009, 10:43:00 AM7/22/09
to
wx: CVS

I found a function GetToolTipText in include/wx/window.h which i
thought i could use, only to get link errors in my app. After a little
searching i found that the function is not yet implemented. Thought id
remind whoever put in the declaration for that, to put in the
definition.

Vadim Zeitlin

unread,
Jul 25, 2009, 7:17:29 PM7/25/09
to

Thanks, I've just added it (r61535), the implementation is perfectly trivial:

wxString wxWindowBase::GetToolTipText() const
{
return m_tooltip ? m_tooltip->GetTip() : wxString();
}

Regards,
VZ
--
TT-Solutions: wxWidgets consultancy and technical support
http://www.tt-solutions.com/

0 new messages