From bdad8c46193d7fe0855bf2fb4e9ad0fd8edacf16 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Thu, 21 Jun 2018 21:25:46 -0700 Subject: [PATCH] Remove garbage characters and trailing whitespace --- src/aui/auibar.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/aui/auibar.cpp b/src/aui/auibar.cpp index 852630b6a7..b61db100b3 100644 --- a/src/aui/auibar.cpp +++ b/src/aui/auibar.cpp @@ -208,11 +208,10 @@ void wxAuiGenericToolBarArt::DrawBackground( { wxRect rect = _rect; rect.height++; - + int startLightness = 150; int endLightness = 90; - - + if ((m_baseColour.Red() < 75) && (m_baseColour.Green() < 75) && (m_baseColour.Blue() < 75)) @@ -223,7 +222,7 @@ void wxAuiGenericToolBarArt::DrawBackground( } wxColour startColour = m_baseColour.ChangeLightness(startLightness); wxColour endColour = m_baseColour.ChangeLightness(endLightness); - + dc.GradientFillLinear(rect, startColour, endColour, wxSOUTH); }