diff options
Diffstat (limited to 'lib/koproperty/editors/booledit.cpp')
-rw-r--r-- | lib/koproperty/editors/booledit.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/koproperty/editors/booledit.cpp b/lib/koproperty/editors/booledit.cpp index 7791730c..839d6d52 100644 --- a/lib/koproperty/editors/booledit.cpp +++ b/lib/koproperty/editors/booledit.cpp @@ -86,17 +86,17 @@ static void drawViewerInternal(TQPainter *p, const TQRect &r, const TQVariant &v { p->eraseRect(r); TQRect r2(r); - r2.moveLeft(KIcon::SizeSmall + 6); + r2.moveLeft(TDEIcon::SizeSmall + 6); if(value.isNull() && !nullText.isEmpty()) { p->drawText(r2, TQt::AlignVCenter | TQt::AlignLeft, nullText); } else if(value.toBool()) { - p->drawPixmap(3, (r.height()-1-KIcon::SizeSmall)/2, yesIcon); + p->drawPixmap(3, (r.height()-1-TDEIcon::SizeSmall)/2, yesIcon); p->drawText(r2, TQt::AlignVCenter | TQt::AlignLeft, i18n("Yes")); } else { - p->drawPixmap(3, (r.height()-1-KIcon::SizeSmall)/2, noIcon); + p->drawPixmap(3, (r.height()-1-TDEIcon::SizeSmall)/2, noIcon); p->drawText(r2, TQt::AlignVCenter | TQt::AlignLeft, i18n("No")); } } |