summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/msn/msndebugrawcmddlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/msn/msndebugrawcmddlg.cpp')
-rw-r--r--kopete/protocols/msn/msndebugrawcmddlg.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kopete/protocols/msn/msndebugrawcmddlg.cpp b/kopete/protocols/msn/msndebugrawcmddlg.cpp
index 341c6808..48c4050e 100644
--- a/kopete/protocols/msn/msndebugrawcmddlg.cpp
+++ b/kopete/protocols/msn/msndebugrawcmddlg.cpp
@@ -21,18 +21,18 @@
#include "ui/msndebugrawcommand_base.h"
-#include <qcheckbox.h>
-#include <qlineedit.h>
+#include <tqcheckbox.h>
+#include <tqlineedit.h>
#include <ktextedit.h>
#include <klocale.h>
-MSNDebugRawCmdDlg::MSNDebugRawCmdDlg( QWidget *parent )
+MSNDebugRawCmdDlg::MSNDebugRawCmdDlg( TQWidget *parent )
: KDialogBase( parent, 0L, true,
i18n( "DEBUG: Send Raw Command - MSN Plugin" ), Ok | Cancel,
Ok, true )
{
- setInitialSize( QSize( 350, 200 ) );
+ setInitialSize( TQSize( 350, 200 ) );
m_main = new MSNDebugRawCommand_base( this );
setMainWidget( m_main );
@@ -42,12 +42,12 @@ MSNDebugRawCmdDlg::~MSNDebugRawCmdDlg()
{
}
-QString MSNDebugRawCmdDlg::command()
+TQString MSNDebugRawCmdDlg::command()
{
return m_main->m_command->text();
}
-QString MSNDebugRawCmdDlg::params()
+TQString MSNDebugRawCmdDlg::params()
{
return m_main->m_params->text();
}
@@ -62,7 +62,7 @@ bool MSNDebugRawCmdDlg::addId()
return m_main->m_addId->isChecked();
}
-QString MSNDebugRawCmdDlg::msg()
+TQString MSNDebugRawCmdDlg::msg()
{
return m_main->m_msg->text();
}