wxCocoa wxMac wxGTK wxWindows
//No code at the moment! //Might look like this: wxString wxStaticText::GetLabel()
{
//some implementation in here
}
//Might not be implemented (querying the guy in charge of wxMac) wxString wxStaticText::GetLabel() const
{
GtkLabel *label = GTK_LABEL(m_widget);
wxString str = wxGTK_CONV_BACK( gtk_label_get_text( label ) );
return wxString(str);
}
//Does not seem to be in wxWindows either