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 | |
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')
-rw-r--r-- | kopete/kopete/chatwindow/kopetechatwindowstyle.cpp | 4 | ||||
-rw-r--r-- | kopete/kopete/kopetewindow.cpp | 4 | ||||
-rw-r--r-- | kopete/libkopete/kopetemetacontact.cpp | 2 | ||||
-rw-r--r-- | kopete/libkopete/ui/userinfodialog.cpp | 4 | ||||
-rw-r--r-- | kopete/plugins/statistics/statisticsdialog.cpp | 2 | ||||
-rw-r--r-- | kopete/protocols/gadu/gadusession.cpp | 2 | ||||
-rw-r--r-- | kopete/protocols/irc/ircprotocol.cpp | 2 | ||||
-rw-r--r-- | kopete/protocols/jabber/jabberaccount.cpp | 2 | ||||
-rw-r--r-- | kopete/protocols/meanwhile/meanwhileprotocol.cpp | 2 | ||||
-rw-r--r-- | kopete/protocols/msn/msnprotocol.cpp | 2 |
10 files changed, 13 insertions, 13 deletions
diff --git a/kopete/kopete/chatwindow/kopetechatwindowstyle.cpp b/kopete/kopete/chatwindow/kopetechatwindowstyle.cpp index 1bc64959..5eba33f0 100644 --- a/kopete/kopete/chatwindow/kopetechatwindowstyle.cpp +++ b/kopete/kopete/chatwindow/kopetechatwindowstyle.cpp @@ -172,7 +172,7 @@ void ChatWindowStyle::readStyleFiles() TQString nextIncomingFile = d->baseHref + TQString("Incoming/NextContent.html"); TQString outgoingFile = d->baseHref + TQString("Outgoing/Content.html"); TQString nextOutgoingFile = d->baseHref + TQString("Outgoing/NextContent.html"); - TQString statusFile = d->baseHref + TQString("tqStatus.html"); + TQString statusFile = d->baseHref + TQString("Status.html"); TQString actionIncomingFile = d->baseHref + TQString("Incoming/Action.html"); TQString actionOutgoingFile = d->baseHref + TQString("Outgoing/Action.html"); @@ -251,7 +251,7 @@ void ChatWindowStyle::readStyleFiles() TQTextStream headerStream(&fileAccess); headerStream.setEncoding(TQTextStream::UnicodeUTF8); d->statusHtml = headerStream.read(); - kdDebug(14000) << k_funcinfo << "tqStatus HTML: " << d->statusHtml << endl; + kdDebug(14000) << k_funcinfo << "Status HTML: " << d->statusHtml << endl; fileAccess.close(); } diff --git a/kopete/kopete/kopetewindow.cpp b/kopete/kopete/kopetewindow.cpp index 7ec4258d..ec3e69f3 100644 --- a/kopete/kopete/kopetewindow.cpp +++ b/kopete/kopete/kopetewindow.cpp @@ -263,7 +263,7 @@ void KopeteWindow::initActions() "SetAvailableAll" ); actionAwayMenu = new KActionMenu( i18n("&Set tqStatus"), "kopeteavailable", - actionCollection(), "tqStatus" ); + actionCollection(), "Status" ); actionAwayMenu->setDelayed( false ); actionAwayMenu->insert(actionSetAvailable); actionAwayMenu->insert(selectAway); @@ -974,7 +974,7 @@ void KopeteWindow::slotBuildStatusMessageMenu() // pop up a menu containing the away messages, and a lineedit // see kopeteaway //messageMenu = new KPopupMenu( this ); -// messageMenu->insertTitle( i18n( "tqStatus Message" ) ); +// messageMenu->insertTitle( i18n( "Status Message" ) ); TQHBox * newMessageBox = new TQHBox( 0 ); newMessageBox->setMargin( 1 ); TQLabel * newMessagePix = new TQLabel( newMessageBox ); diff --git a/kopete/libkopete/kopetemetacontact.cpp b/kopete/libkopete/kopetemetacontact.cpp index 05925690..1db7b1e5 100644 --- a/kopete/libkopete/kopetemetacontact.cpp +++ b/kopete/libkopete/kopetemetacontact.cpp @@ -507,7 +507,7 @@ TQString MetaContact::statusString() const return i18n( "Offline" ); case OnlineStatus::Unknown: default: - return i18n( "tqStatus not available" ); + return i18n( "Status not available" ); } } 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() ) { diff --git a/kopete/plugins/statistics/statisticsdialog.cpp b/kopete/plugins/statistics/statisticsdialog.cpp index 1404e075..8c7e83eb 100644 --- a/kopete/plugins/statistics/statisticsdialog.cpp +++ b/kopete/plugins/statistics/statisticsdialog.cpp @@ -217,7 +217,7 @@ void StatisticsDialog::generatePageFromTQStringList(TQStringList values, const T "<a href=\"monthofyear:12\">December</a> " "</span></div><br>")); -// mainWidget->listView->addColumn(i18n("tqStatus")); +// mainWidget->listView->addColumn(i18n("Status")); // mainWidget->listView->addColumn(i18n("Start Date")); // mainWidget->listView->addColumn(i18n("End Date")); // mainWidget->listView->addColumn(i18n("Start Date")); diff --git a/kopete/protocols/gadu/gadusession.cpp b/kopete/protocols/gadu/gadusession.cpp index 345fdd07..a9a84691 100644 --- a/kopete/protocols/gadu/gadusession.cpp +++ b/kopete/protocols/gadu/gadusession.cpp @@ -62,7 +62,7 @@ GaduSession::isConnected() const int GaduSession::status() const { - kdDebug(14100)<<"tqStatus = " << session_->status <<", initial = "<< session_->initial_status <<endl; + kdDebug(14100)<<"Status = " << session_->status <<", initial = "<< session_->initial_status <<endl; if ( session_ ) { return session_->status & ( ~GG_STATUS_FRIENDS_MASK ); } diff --git a/kopete/protocols/irc/ircprotocol.cpp b/kopete/protocols/irc/ircprotocol.cpp index a3906164..b60f5a58 100644 --- a/kopete/protocols/irc/ircprotocol.cpp +++ b/kopete/protocols/irc/ircprotocol.cpp @@ -147,7 +147,7 @@ IRCProtocol::IRCProtocol( TQObject *parent, const char *name, const TQStringList 0, this, Offline, TQString(), i18n("Offline"), i18n("Offline"), Kopete::OnlineStatusManager::Offline), m_StatusUnknown(Kopete::OnlineStatus::Unknown, - 999, this, 999, "status_unknown", i18n("tqStatus not available")), + 999, this, 999, "status_unknown", i18n("Status not available")), propChannelTopic(TQString::tqfromLatin1("channelTopic"), i18n("Topic"), TQString(), false, true ), propChannelMembers(TQString::tqfromLatin1("channelMembers"), i18n("Members")), diff --git a/kopete/protocols/jabber/jabberaccount.cpp b/kopete/protocols/jabber/jabberaccount.cpp index f3212f93..a86fc490 100644 --- a/kopete/protocols/jabber/jabberaccount.cpp +++ b/kopete/protocols/jabber/jabberaccount.cpp @@ -1017,7 +1017,7 @@ void JabberAccount::slotCSError ( int error ) /* Set presence (usually called by dialog widget). */ void JabberAccount::setPresence ( const XMPP::tqStatus &status ) { - kdDebug(JABBER_DEBUG_GLOBAL) << k_funcinfo << "tqStatus: " << status.show () << ", Reason: " << status.status () << endl; + kdDebug(JABBER_DEBUG_GLOBAL) << k_funcinfo << "Status: " << status.show () << ", Reason: " << status.status () << endl; // fetch input status XMPP::tqStatus newtqStatus = status; diff --git a/kopete/protocols/meanwhile/meanwhileprotocol.cpp b/kopete/protocols/meanwhile/meanwhileprotocol.cpp index 5f9b4ce7..3347f6da 100644 --- a/kopete/protocols/meanwhile/meanwhileprotocol.cpp +++ b/kopete/protocols/meanwhile/meanwhileprotocol.cpp @@ -60,7 +60,7 @@ MeanwhileProtocol::MeanwhileProtocol(TQObject* parent, const char *name, TQString(), i18n("Account Offline")), statusMessage(TQString::tqfromLatin1("statusMessage"), - i18n("tqStatus Message"), TQString(), false, true), + i18n("Status Message"), TQString(), false, true), awayMessage(Kopete::Global::Properties::self()->awayMessage()) { diff --git a/kopete/protocols/msn/msnprotocol.cpp b/kopete/protocols/msn/msnprotocol.cpp index 26869ea7..407550f3 100644 --- a/kopete/protocols/msn/msnprotocol.cpp +++ b/kopete/protocols/msn/msnprotocol.cpp @@ -58,7 +58,7 @@ MSNProtocol::MSNProtocol( TQObject *parent, const char *name, const TQStringList FLN( Kopete::OnlineStatus::Offline, 0, this, 7, TQString(), i18n( "Offline" ) , i18n( "&Offline" ), Kopete::OnlineStatusManager::Offline,Kopete::OnlineStatusManager::DisabledIfOffline ), HDN( Kopete::OnlineStatus::Invisible, 3, this, 8, "contact_invisible_overlay", i18n( "Invisible" ) , i18n( "&Invisible" ), Kopete::OnlineStatusManager::Invisible ), IDL( Kopete::OnlineStatus::Away, 10, this, 9, "contact_away_overlay", i18n( "Idle" ) , i18n( "&Idle" ), Kopete::OnlineStatusManager::Idle , Kopete::OnlineStatusManager::HideFromMenu ), - UNK( Kopete::OnlineStatus::Unknown, 25, this, 0, "status_unknown", i18n( "tqStatus not available" ) ), + UNK( Kopete::OnlineStatus::Unknown, 25, this, 0, "status_unknown", i18n( "Status not available" ) ), CNT( Kopete::OnlineStatus::Connecting, 2, this, 10,"msn_connecting", i18n( "Connecting" ) ), propEmail(Kopete::Global::Properties::self()->emailAddress()), propPhoneHome(Kopete::Global::Properties::self()->privatePhone()), |