Fix inadvertent "TQ" changes.

pull/1/head
Darrell Anderson 12 years ago
parent bcd3e0efb7
commit ca3d6cef5d

@ -105,7 +105,7 @@ const TQStringList Preferences::defaultQuickButtonList()
<< "Kick,/KICK %u%n"
<< "Ban,/BAN %u%n"
<< "Part,/PART %c Leaving...%n"
<< "Quit,/TQUIT Leaving...%n";
<< "Quit,/QUIT Leaving...%n";
}
const TQStringList Preferences::quickButtonList()

@ -92,9 +92,9 @@ class DccTransfer : public TQObject
// common settings for DccTransferRecv / DccTransferSend
// RETQUIRED
// REQUIRED
void setConnectionId( int connectionId );
// RETQUIRED
// REQUIRED
void setPartnerNick( const TQString& nick );
signals:

@ -50,11 +50,11 @@ class DccTransferRecv : public DccTransfer
DccTransferRecv(TQObject* parent);
virtual ~DccTransferRecv();
// RETQUIRED
// REQUIRED
void setPartnerIp( const TQString& ip );
// RETQUIRED
// REQUIRED
void setPartnerPort( const TQString& port );
// RETQUIRED
// REQUIRED
void setFileSize( unsigned long fileSize );
// OPTIONAL, if not specified, "unnamed_file"
// TODO: "$sendername-$receiveddate" is better

@ -39,11 +39,11 @@ class DccTransferSend : public DccTransfer
DccTransferSend(TQObject* parent);
virtual ~DccTransferSend();
// RETQUIRED
// REQUIRED
void setFileURL( const KURL& url );
// OPTIONAL
void setFileName( const TQString& fileName );
// RETQUIED
// REQUIRED
// FIXME: this setting should be an optional one or be removed: make DccTransferSend itself read the configuration
void setOwnIp( const TQString& ownIp );
// OPTIONAL

@ -10,8 +10,8 @@
*/
#ifndef IRCTQUEUE_H
#define IRCTQUEUE_H
#ifndef IRCQUEUE_H
#define IRCQUEUE_H
class Server;

@ -1429,7 +1429,7 @@ namespace Konversation
if(parameter.isEmpty())
{
result = usage(i18n("Usage: %1TQUOTE command list").arg(commandChar));
result = usage(i18n("Usage: %1QUOTE command list").arg(commandChar));
}
else
{

@ -10,8 +10,8 @@
Copyright (C) 2005-2008 Eike Hein <hein@kde.org>
*/
#ifndef TQUERY_H
#define TQUERY_H
#ifndef QUERY_H
#define QUERY_H
#include "chatwindow.h"
#include "nickinfo.h"

@ -10,8 +10,8 @@
*/
#ifndef TQUEUETUNER_H
#define TQUEUETUNER_H
#ifndef QUEUETUNER_H
#define QUEUETUNER_H
#include "queuetunerbase.h"

@ -11,8 +11,8 @@
email: eisfuchs@tigress.com
*/
#ifndef TQUICKBUTTON_H
#define TQUICKBUTTON_H
#ifndef QUICKBUTTON_H
#define QUICKBUTTON_H
#include <tqpushbutton.h>

@ -10,8 +10,8 @@
Copyright (C) 2006 John Tapsell <johnflux@gmail.com>
*/
#ifndef TQUICKBUTTONSCONFIG_H
#define TQUICKBUTTONSCONFIG_H
#ifndef QUICKBUTTONSCONFIG_H
#define QUICKBUTTONSCONFIG_H
#include <tqlistview.h>

@ -12,8 +12,8 @@
email: mail@tuxipuxi.de
*/
#ifndef TQUICKCONNECTDIALOG_H
#define TQUICKCONNECTDIALOG_H
#ifndef QUICKCONNECTDIALOG_H
#define QUICKCONNECTDIALOG_H
#include "common.h"

@ -692,9 +692,9 @@ void Server::gotOwnResolvedHostByWelcome(KResolverResults res)
void Server::quitServer()
{
// Make clear this is deliberate even if the TQUIT never actually goes through the queue
// Make clear this is deliberate even if the QUIT never actually goes through the queue
// (i.e. this is not redundant with _send_internal()'s updateConnectionState() call for
// a TQUIT).
// a QUIT).
updateConnectionState(Konversation::SSDeliberatelyDisconnected);
TQString command(Preferences::commandChar()+"QUIT");
@ -1050,7 +1050,7 @@ int Server::getPreLength(const TQString& command, const TQString& dest)
}
//Commands greater than 1 have localizeable text: 0 1 2 3 4 5 6
static TQStringList outcmds=TQStringList::split(TQChar(' '),"WHO TQUIT PRIVMSG NOTICE KICK PART TOPIC");
static TQStringList outcmds=TQStringList::split(TQChar(' '),"WHO QUIT PRIVMSG NOTICE KICK PART TOPIC");
int Server::_send_internal(TQString outputLine)
{

Loading…
Cancel
Save