From 00ce683fb0a5464660a56613f3e3579f6b8a449c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 22 Jun 2000 07:57:43 +0000 Subject: [PATCH] Sun CC 5.0 compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7632 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/generic/treelay.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/generic/treelay.h b/include/wx/generic/treelay.h index f4a90e808e..02a697132f 100644 --- a/include/wx/generic/treelay.h +++ b/include/wx/generic/treelay.h @@ -61,7 +61,7 @@ public: inline long GetLeftMargin(void) const { return m_leftMargin; } inline bool GetOrientation(void) const { return m_orientation; } - inline void SetOrientation(bool or) { m_orientation = or; } + inline void SetOrientation(bool orient) { m_orientation = orient; } private: void CalcLayout(long node_id, int level, wxDC& dc);