RBG value! (Green and Blue were swapped... I suppose if you are
colour blind it wouldn't matter much.)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3057
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
DWORD dwStyleNew = ConvertToMSWStyle(dummy, m_windowStyle);
dwStyleNew |= m_baseStyle;
DWORD dwStyleNew = ConvertToMSWStyle(dummy, m_windowStyle);
dwStyleNew |= m_baseStyle;
- // Get the current window style.
+ // Get the current window style.
DWORD dwStyleOld = ::GetWindowLong(GetHwnd(), GWL_STYLE);
DWORD dwStyleOld = ::GetWindowLong(GetHwnd(), GWL_STYLE);
- // Only set the window style if the view bits have changed.
+ // Only set the window style if the view bits have changed.
if ( dwStyleOld != dwStyleNew )
{
::SetWindowLong(GetHwnd(), GWL_STYLE, dwStyleNew);
if ( dwStyleOld != dwStyleNew )
{
::SetWindowLong(GetHwnd(), GWL_STYLE, dwStyleNew);
// Sets the text colour of the listview
void wxListCtrl::SetTextColour(const wxColour& col)
{
// Sets the text colour of the listview
void wxListCtrl::SetTextColour(const wxColour& col)
{
- ListView_SetTextColor(GetHwnd(), PALETTERGB(col.Red(), col.Blue(), col.Green()));
+ ListView_SetTextColor(GetHwnd(), PALETTERGB(col.Red(), col.Green(), col.Blue()));
}
// Gets the index of the topmost visible item when in
}
// Gets the index of the topmost visible item when in