mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
avoid temporary in QStyle::itemTextRect()
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
parent
d13e57128a
commit
f63d3126ba
1 changed files with 3 additions and 5 deletions
|
@ -456,19 +456,17 @@ void QStyle::polish(QPalette & /* pal */)
|
|||
QRect QStyle::itemTextRect(const QFontMetrics &metrics, const QRect &rect, int alignment, bool enabled,
|
||||
const QString &text) const
|
||||
{
|
||||
QRect result;
|
||||
int x, y, w, h;
|
||||
rect.getRect(&x, &y, &w, &h);
|
||||
if (!text.isEmpty()) {
|
||||
result = metrics.boundingRect(x, y, w, h, alignment, text);
|
||||
QRect result = metrics.boundingRect(x, y, w, h, alignment, text);
|
||||
if (!enabled && proxy()->styleHint(SH_EtchDisabledText)) {
|
||||
result.setWidth(result.width()+1);
|
||||
result.setHeight(result.height()+1);
|
||||
}
|
||||
} else {
|
||||
result = QRect(x, y, w, h);
|
||||
return result;
|
||||
}
|
||||
return result;
|
||||
return QRect(x, y, w, h);
|
||||
}
|
||||
|
||||
/*!
|
||||
|
|
Loading…
Add table
Reference in a new issue