summaryrefslogtreecommitdiffstats
path: root/chalk/plugins/filters/levelfilter/kis_level_filter.cc
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-01 18:39:56 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-01 18:39:56 +0000
commit7cc6b9d8e81b1f674a94cebc6a0e6f02452a872a (patch)
treeb0f6d2e1acba11603634edebd197c2598b4b82a0 /chalk/plugins/filters/levelfilter/kis_level_filter.cc
parent84a75dbef9da6531bcb6f3ca9ab2216396b7b3bd (diff)
downloadkoffice-7cc6b9d8.tar.gz
koffice-7cc6b9d8.zip
Fix koffice FTBFS under gcc4.6
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1244302 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'chalk/plugins/filters/levelfilter/kis_level_filter.cc')
-rw-r--r--chalk/plugins/filters/levelfilter/kis_level_filter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chalk/plugins/filters/levelfilter/kis_level_filter.cc b/chalk/plugins/filters/levelfilter/kis_level_filter.cc
index 6b8dd6a09..fb437f269 100644
--- a/chalk/plugins/filters/levelfilter/kis_level_filter.cc
+++ b/chalk/plugins/filters/levelfilter/kis_level_filter.cc
@@ -277,7 +277,7 @@ void KisLevelConfigWidget::drawHistogram(bool logarithmic)
TQPixmap pix(256, height);
pix.fill();
TQPainter p(&pix);
- p.setPen(TQPen::TQPen(TQt::gray,1, TQt::SolidLine));
+ p.setPen(TQPen(TQt::gray,1, TQt::SolidLine));
double highest = (double)histogram->calculations().getHighest();
TQ_INT32 bins = histogram->producer()->numberOfBins();