diff options
author | Slávek Banko <[email protected]> | 2013-10-08 00:13:25 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-10-08 05:14:53 +0200 |
commit | 84f5a315c3429b47a7eff15e626e2efdbe4f6e5e (patch) | |
tree | 770861aa9033e1dc6c5168358194ff85b32dd429 /src/cscopemsgdlg.cpp | |
parent | 57d8bb3d12aed373eee08915f0ff19f5233aabe3 (diff) | |
download | kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.tar.gz kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.zip |
Initial TQt conversion
Diffstat (limited to 'src/cscopemsgdlg.cpp')
-rw-r--r-- | src/cscopemsgdlg.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cscopemsgdlg.cpp b/src/cscopemsgdlg.cpp index 1bf6656..2ffb469 100644 --- a/src/cscopemsgdlg.cpp +++ b/src/cscopemsgdlg.cpp @@ -25,8 +25,8 @@ * ***************************************************************************/ -#include <qtextedit.h> -#include <qpushbutton.h> +#include <ntqtextedit.h> +#include <ntqpushbutton.h> #include "cscopemsgdlg.h" /** @@ -34,7 +34,7 @@ * @param pParent The parent widget * @param szName The widget's name */ -CscopeMsgDlg::CscopeMsgDlg(QWidget* pParent, const char* szName) +CscopeMsgDlg::CscopeMsgDlg(TQWidget* pParent, const char* szName) : CscopeMsgLayout(pParent, szName, false, 0) { // Hide the dialog when the "Hide" button is clicked @@ -56,7 +56,7 @@ CscopeMsgDlg::~CscopeMsgDlg() * After a new messsage is added, the dialog becomes visible. * @param sText The text of the message to add */ -void CscopeMsgDlg::addText(const QString& sText) +void CscopeMsgDlg::addText(const TQString& sText) { m_pMsgText->append(sText); show(); |