]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/treectrl.h
RenameEntry/Group() functions added to wxConfig and derivations (not yet
[wxWidgets.git] / include / wx / msw / treectrl.h
index 4bae54274352e84253a93ec3d78a4bc2e760fd10..48c0d60504e0f340485ceb9ec354ccf38150e2df 100644 (file)
@@ -21,6 +21,7 @@
 
 #include "wx/control.h"
 #include "wx/event.h"
 
 #include "wx/control.h"
 #include "wx/event.h"
+#include "wx/textctrl.h"
 
 #ifdef __GNUWIN32__
 #  ifdef GetFirstChild
 
 #ifdef __GNUWIN32__
 #  ifdef GetFirstChild
@@ -150,7 +151,11 @@ public:
 
     // accessors: set/get the item associated with this node
     void SetId(const wxTreeItemId& id) { m_itemId = id; }
 
     // accessors: set/get the item associated with this node
     void SetId(const wxTreeItemId& id) { m_itemId = id; }
+#ifdef __WATCOMC__
+    const wxTreeItemId GetId() const { return m_itemId; }
+#else
     const wxTreeItemId& GetId() const { return (wxTreeItemId&) m_itemId; }
     const wxTreeItemId& GetId() const { return (wxTreeItemId&) m_itemId; }
+#endif
 };
 
 // ----------------------------------------------------------------------------
 };
 
 // ----------------------------------------------------------------------------