diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-27 21:38:57 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-27 21:38:57 +0000 |
commit | 52c719697a3a46d48fa618d68b84d7d6bd7c524c (patch) | |
tree | 410544d599787f6a602d2069f2ab31c90a5c4585 /kopete/libkopete/ui | |
parent | d7c69d672cd5b014eac2349c4f52e042ffa7e1ab (diff) | |
download | tdenetwork-52c719697a3a46d48fa618d68b84d7d6bd7c524c.tar.gz tdenetwork-52c719697a3a46d48fa618d68b84d7d6bd7c524c.zip |
Fix a number of accidental tqStatus string conversions
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1249829 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/libkopete/ui')
-rw-r--r-- | kopete/libkopete/ui/userinfodialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kopete/libkopete/ui/userinfodialog.cpp b/kopete/libkopete/ui/userinfodialog.cpp index 0b642e7b..40ac3de9 100644 --- a/kopete/libkopete/ui/userinfodialog.cpp +++ b/kopete/libkopete/ui/userinfodialog.cpp @@ -182,7 +182,7 @@ void UserInfoDialog::fillHTML() } if ( d->status.isEmpty() ) { - text.append( "<div id=\"status\"><b>" + i18n("tqStatus : ") + "</b>" ); + text.append( "<div id=\"status\"><b>" + i18n("Status : ") + "</b>" ); text.append( d->status + "</div><br>" ); } @@ -214,7 +214,7 @@ void UserInfoDialog::fillWidgets() } if ( !d->status.isEmpty() ) { - d->topLayout->addWidget( addLabelEdit( i18n("tqStatus:"), d->status, d->statusEdit ) ); + d->topLayout->addWidget( addLabelEdit( i18n("Status:"), d->status, d->statusEdit ) ); } if ( !d->warningLevel.isEmpty() ) { |