Set the tooltip for generic wxToolBar tools under wxOSX/Cocoa.

When using non-native toolbar, set the tooltip for tools m_controlHandle.

Closes #12362.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69951 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-12-07 23:55:38 +00:00
parent cf82560a38
commit 0e50659242

View File

@@ -192,6 +192,10 @@ public:
if ( IsButton() )
[(NSButton*)m_controlHandle setTitle:l.AsNSString()];
if ( m_controlHandle )
{
[m_controlHandle setToolTip:sh.AsNSString()];
}
}
void Action()