More changes for compilation issues on OSX

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20909 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-06-04 00:07:57 +00:00
parent ba0d19c23f
commit adf64959aa
2 changed files with 26 additions and 22 deletions

View File

@@ -60,6 +60,15 @@ public:
m_alignment = alignment;
}
wxTreeListColumnInfo(const wxTreeListColumnInfo& other)
{
m_image = other.m_image;
m_selected_image = other.m_selected_image;
m_text = other.m_text;
m_width = other.m_width;
m_alignment = other.m_alignment;
}
~wxTreeListColumnInfo() {}
// getters
@@ -201,8 +210,8 @@ public:
wxString GetColumnText(size_t column) const;
void SetColumn(size_t column, const wxTreeListColumnInfo& info);
wxTreeListColumnInfo& GetColumn(size_t column);
const wxTreeListColumnInfo& GetColumn(size_t column) const;
wxTreeListColumnInfo GetColumn(size_t column);
const wxTreeListColumnInfo GetColumn(size_t column) const;
// Functions to work with tree list ctrl items.