From: <sv...@ww...> - 2006-11-15 06:57:23
|
Author: mkrose Date: 2006-11-14 22:57:16 -0800 (Tue, 14 Nov 2006) New Revision: 2013 Modified: trunk/csp/cspsim/wf/themes/Default.cpp Log: Oops, commented the wrong unused argument. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=2013 Modified: trunk/csp/cspsim/wf/themes/Default.cpp =================================================================== --- trunk/csp/cspsim/wf/themes/Default.cpp 2006-11-15 06:29:00 UTC (rev 2012) +++ trunk/csp/cspsim/wf/themes/Default.cpp 2006-11-15 06:57:16 UTC (rev 2013) @@ -432,12 +432,12 @@ return Point(0, 0 - (getCaptionHeight() / 2)); } -Size Default::getTabPageClientAreaSize(const Tab* /*tab*/) const { +Size Default::getTabPageClientAreaSize(const Tab* tab) const { Size tabSize = tab->getSize(); return Size(tabSize.m_W, tabSize.m_H - m_Colors.tabButtonHeight); } -Point Default::getTabPageClientAreaLocation(const Tab* tab) const { +Point Default::getTabPageClientAreaLocation(const Tab* /*tab*/) const { return Point(0.0f, 0.0f - (m_Colors.tabButtonHeight / 2)); } |