summaryrefslogtreecommitdiffstats
path: root/src/mainview.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-06 14:15:01 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-06 14:15:01 -0600
commit1b89319fd93b88313cab40f1e9de24c067b04efb (patch)
tree80132996de993c3dcab4040864d7729842875b2d /src/mainview.cpp
parentd08a0ede1d2cb15bb14b0ff75eacf5c682b1fa0a (diff)
downloadkvpnc-1b89319fd93b88313cab40f1e9de24c067b04efb.tar.gz
kvpnc-1b89319fd93b88313cab40f1e9de24c067b04efb.zip
Initial TQt conversion
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r--src/mainview.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp
index d78ae1b..f25d038 100644
--- a/src/mainview.cpp
+++ b/src/mainview.cpp
@@ -20,29 +20,29 @@
#include <klocale.h>
#include <kprocess.h>
-#include <qpushbutton.h>
-#include <qlineedit.h>
+#include <tqpushbutton.h>
+#include <tqlineedit.h>
#include <klineedit.h>
#include <kpassdlg.h>
#include <kmessagebox.h>
-#include <qprocess.h>
-#include <qtextedit.h>
-#include <qwidget.h>
-#include <qframe.h>
-#include <qwhatsthis.h>
-#include <qtooltip.h>
-#include <qlayout.h>
+#include <tqprocess.h>
+#include <tqtextedit.h>
+#include <tqwidget.h>
+#include <tqframe.h>
+#include <tqwhatsthis.h>
+#include <tqtooltip.h>
+#include <tqlayout.h>
#include "mainview.h"
-MainView::MainView( QWidget* parent, const char* name, bool, WFlags fl ) : MainViewBase( parent, name, fl )
+MainView::MainView( TQWidget* parent, const char* name, bool, WFlags fl ) : MainViewBase( parent, name, fl )
{
DebugOutput = new DebugOutputTextEdit(this, "DebugOutput");
MainViewBaseLayout->addMultiCellWidget(DebugOutput,1,1,0,4);
DebugOutput->setReadOnly(true);
- DebugOutput->setText( QString::null );
- QToolTip::add( DebugOutput, tr2i18n( "Debug console" ) );
- QWhatsThis::add( DebugOutput, tr2i18n( "The debug console shows useful debug information to solve problems. You need to turn on debug features for the program you want to produce output in preferences dialog." ) );
+ DebugOutput->setText( TQString() );
+ TQToolTip::add( DebugOutput, tr2i18n( "Debug console" ) );
+ TQWhatsThis::add( DebugOutput, tr2i18n( "The debug console shows useful debug information to solve problems. You need to turn on debug features for the program you want to produce output in preferences dialog." ) );
}