]> git.saurik.com Git - wxWidgets.git/commitdiff
Add GetToolTip accessor
authorRobin Dunn <robin@alldunn.com>
Wed, 2 Mar 2005 18:32:52 +0000 (18:32 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 2 Mar 2005 18:32:52 +0000 (18:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32562 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/treebase.h
wxPython/src/_treectrl.i

index 9148bd6d2747e252dcf23cdd2a6b8d4a2996147e..065432bc694ab21a5f59a8867418ea2163816d85 100644 (file)
@@ -283,7 +283,8 @@ public:
 
         // Set the tooltip for the item (for EVT\_TREE\_ITEM\_GETTOOLTIP events)
     void SetToolTip(const wxString& toolTip) { m_label = toolTip; }
-
+    wxString GetToolTip() { return m_label; }
+    
 #if WXWIN_COMPATIBILITY_2_2
     // for compatibility only, don't use
     wxDEPRECATED( int GetCode() const);
index e9f9f741dd2311ba0965ed46adc50fcdb2a9df2d..f76254f6581fecec0e3ff8848c3ea82ac47e35b0 100644 (file)
@@ -256,6 +256,7 @@ public:
 
         // Set the tooltip for the item (for EVT_TREE_ITEM_GETTOOLTIP events)
     void SetToolTip(const wxString& toolTip);
+    wxString GetToolTip();
 };
 
 //---------------------------------------------------------------------------