Tooltips in wxWidgets not working
I have implemented tooltips for buttons and such in my wxWidgets GUI, but they do not show. It has worked before, but I cannot get it to work now regardless of version of ROS and Ubuntu (tested electric and fuerte in 11.10 and 12.04). Implementing tooltips the same way in a simple GUI without any ROS code works fine. I use the setToolTip() method like this:
wxButton* myButton = new wxButton(...);
myButton->SetToolTip(_("this is a tooltip"));
Any suggestions on what might be wrong?