From fd23c1aa9c866713ecb03627e59628c68632b732 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 23 Mar 2012 16:25:02 -0500 Subject: [PATCH] Fix accidental FTBFS from last commit (cherry picked from commit b54a51cf03490641c0cde1562be4221c760954fc) --- style/lipstik.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/style/lipstik.cpp b/style/lipstik.cpp index aadfde1..b02e1a3 100644 --- a/style/lipstik.cpp +++ b/style/lipstik.cpp @@ -1,4 +1,4 @@ -/* Lipstik widget style for KDE 3 +/* Lipstik widget style for TDE Copyright (C) 2004-2007 Patrice Tremblay http://www.poplix.info/lipstik @@ -7,7 +7,7 @@ Copyright (C) 2003 Sandro Giessl - based on the KDE style "dotNET": + based on the TDE style "dotNET": Copyright (C) 2001-2002, Chris Lee Carsten Pfeiffer @@ -19,7 +19,7 @@ Copyright (c) 2002 Malte Starostik (c) 2002,2003 Maksim Orlovich - based on the KDE3 HighColor Style + based on the TDE HighColor Style Copyright (C) 2001-2002 Karol Szwed (C) 2001-2002 Fredrik H�glund Drawing routines adapted from the KDE2 HCStyle, @@ -2895,9 +2895,9 @@ void LipstikStyle::drawControl(ControlElement element, p->fillRect( TQRect(r.left(),r.top(), checkcol+4,r.bottom()-r.top()+1), getColor(cg, MenuStripeColor) ); } else { if(_reverseGradients) { - renderGradient(p, TQRect(r.left(),r.top(), checkcol+4,r.bottom()-r.top()+1), getColor(cg, MenuStripeColor), cg.ba$ + renderGradient(p, TQRect(r.left(),r.top(), checkcol+4,r.bottom()-r.top()+1), getColor(cg, MenuStripeColor), cg.background().light( 105 ), false); } else { - renderGradient(p, TQRect(r.left(),r.top(), checkcol+4,r.bottom()-r.top()+1),cg.background().light( 105 ), getColo$ + renderGradient(p, TQRect(r.left(),r.top(), checkcol+4,r.bottom()-r.top()+1),cg.background().light( 105 ), getColor(cg, MenuStripeColor), false); } } }