Rename a few stragglers

pull/1/head
Timothy Pearson 13 years ago
parent 8a143ab9f8
commit 5edc007124

@ -797,8 +797,8 @@ void ChatMessagePart::slotCopyURL()
DOM::HTMLAnchorElement a = d->activeElement;
if ( !a.isNull() )
{
TQApplication::tqclipboard()->setText( a.href().string(), TQClipboard::Clipboard );
TQApplication::tqclipboard()->setText( a.href().string(), TQClipboard::Selection );
TQApplication::clipboard()->setText( a.href().string(), TQClipboard::Clipboard );
TQApplication::clipboard()->setText( a.href().string(), TQClipboard::Selection );
}
}

@ -81,7 +81,7 @@ class AliasItem : public TQListViewItem
if ( isEnabled() || !lv )
p->setPen( cg.highlightedText() );
else if ( !isEnabled() && lv )
p->setPen( lv->tqpalette().disabled().highlightedText() );
p->setPen( lv->palette().disabled().highlightedText() );
}
// And last, draw the online status icons

@ -399,7 +399,7 @@ void aHistLineEdit::paintEvent ( TQPaintEvent *p )
TQPen pen = paint.pen();
pen.setWidth(5);
pen.setStyle(Qt::SolidLine);
pen.setColor(tqpalette().active().highlight());
pen.setColor(palette().active().highlight());
paint.setPen(pen);
TQRect r = frameRect();
paint.drawRect(r);

Loading…
Cancel
Save