diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-24 11:55:20 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-24 11:55:20 -0600 |
commit | 5edc007124c509da7a3b6f7d96197481ecdee087 (patch) | |
tree | d9ec0a1a52af8780269faaf2e42e8ebf06034e5b | |
parent | 8a143ab9f846e910c583ea8e770cd05495e0c58d (diff) | |
download | tdenetwork-5edc007124c509da7a3b6f7d96197481ecdee087.tar.gz tdenetwork-5edc007124c509da7a3b6f7d96197481ecdee087.zip |
Rename a few stragglers
-rw-r--r-- | kopete/kopete/chatwindow/chatmessagepart.cpp | 4 | ||||
-rw-r--r-- | kopete/plugins/alias/aliaspreferences.cpp | 2 | ||||
-rw-r--r-- | ksirc/ahistlineedit.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/kopete/kopete/chatwindow/chatmessagepart.cpp b/kopete/kopete/chatwindow/chatmessagepart.cpp index e7421438..f383e25a 100644 --- a/kopete/kopete/chatwindow/chatmessagepart.cpp +++ b/kopete/kopete/chatwindow/chatmessagepart.cpp @@ -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 ); } } diff --git a/kopete/plugins/alias/aliaspreferences.cpp b/kopete/plugins/alias/aliaspreferences.cpp index 5782b95c..9a1a0594 100644 --- a/kopete/plugins/alias/aliaspreferences.cpp +++ b/kopete/plugins/alias/aliaspreferences.cpp @@ -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 diff --git a/ksirc/ahistlineedit.cpp b/ksirc/ahistlineedit.cpp index 5927b498..686c530a 100644 --- a/ksirc/ahistlineedit.cpp +++ b/ksirc/ahistlineedit.cpp @@ -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); |