diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
commit | d6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch) | |
tree | d109539636691d7b03036ca1c0ed29dbae6577cf /vcs/cvsservice/editorsdialog.cpp | |
parent | 3331a47a9cad24795c7440ee8107143ce444ef34 (diff) | |
download | tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'vcs/cvsservice/editorsdialog.cpp')
-rw-r--r-- | vcs/cvsservice/editorsdialog.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/vcs/cvsservice/editorsdialog.cpp b/vcs/cvsservice/editorsdialog.cpp index 12319102..5f26d100 100644 --- a/vcs/cvsservice/editorsdialog.cpp +++ b/vcs/cvsservice/editorsdialog.cpp @@ -15,8 +15,8 @@ #include <kdebug.h> #include <dcopref.h> -#include <qtextbrowser.h> -#include <qregexp.h> +#include <tqtextbrowser.h> +#include <tqregexp.h> #include "editorsdialog.h" @@ -24,7 +24,7 @@ #include <cvsjob_stub.h> #include <cvsservice_stub.h> -EditorsDialog::EditorsDialog(CvsService_stub *cvsService, QWidget *parent, const char *name) +EditorsDialog::EditorsDialog(CvsService_stub *cvsService, TQWidget *parent, const char *name) : DCOPObject( "CvsEditorsDCOPIface"), EditorsDialogBase(parent, name, TRUE, Qt::WDestructiveClose), m_cvsService(cvsService), m_cvsJob(0) { @@ -41,7 +41,7 @@ EditorsDialog::~EditorsDialog() delete m_cvsJob; } -void EditorsDialog::startjob(QString strDir) +void EditorsDialog::startjob(TQString strDir) { kdDebug(9006) << "EditorsDialog::start() workDir = " << strDir << endl; @@ -51,7 +51,7 @@ void EditorsDialog::startjob(QString strDir) // establish connections to the signals of the cvs m_job connectDCOPSignal( job.app(), job.obj(), "jobExited(bool, int)", "slotJobExited(bool, int)", true ); // We'll read the ouput directly from the job ... - connectDCOPSignal( job.app(), job.obj(), "receivedStdout(QString)", "slotReceivedOutput(QString)", true ); + connectDCOPSignal( job.app(), job.obj(), "receivedStdout(TQString)", "slotReceivedOutput(TQString)", true ); kdDebug(9006) << "Running: " << m_cvsJob->cvsCommand() << endl; m_cvsJob->execute(); @@ -65,23 +65,23 @@ void EditorsDialog::slotJobExited( bool normalExit, int exitStatus ) return; } - static QRegExp re("([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s" + static TQRegExp re("([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s" "([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s(.*)"); - static QRegExp subre("([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s" + static TQRegExp subre("([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s" "([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s([^\\s]+)\\s(.*)"); - QString lastfilename; + TQString lastfilename; - QStringList lines = QStringList::split( "\n", m_output ); + TQStringList lines = TQStringList::split( "\n", m_output ); int found = 0; for (size_t i=0; i<lines.count(); ++i) { - QString s = lines[i].simplifyWhiteSpace(); + TQString s = lines[i].simplifyWhiteSpace(); kdDebug(9006) << "editors:---" << s << "---" << endl; kdDebug(9006) << " : lastfile was " << lastfilename << endl; if (re.exactMatch(s)) { - QString file = re.cap( 1 ); - QString locker = re.cap( 2 ); - QString date = re.cap(5)+" "+re.cap(4)+" "+re.cap(7)+" "+re.cap(6); + TQString file = re.cap( 1 ); + TQString locker = re.cap( 2 ); + TQString date = re.cap(5)+" "+re.cap(4)+" "+re.cap(7)+" "+re.cap(6); m_textBrowser->append( "<b>"+i18n("File")+": <code>"+file+"</code></b>" ); m_textBrowser->append( "<b>"+i18n("User")+":</b> "+locker ); @@ -92,9 +92,9 @@ void EditorsDialog::slotJobExited( bool normalExit, int exitStatus ) lastfilename = file; } else { if (subre.exactMatch(s)) { - QString file = lastfilename; - QString locker = subre.cap( 1 ); - QString date = subre.cap(4)+" "+subre.cap(3)+" "+subre.cap(6)+" "+subre.cap(5); + TQString file = lastfilename; + TQString locker = subre.cap( 1 ); + TQString date = subre.cap(4)+" "+subre.cap(3)+" "+subre.cap(6)+" "+subre.cap(5); m_textBrowser->append( "<b>"+i18n("File")+": <code>"+file+"</code></b>" ); m_textBrowser->append( "<b>"+i18n("User")+":</b> "+locker ); @@ -117,7 +117,7 @@ void EditorsDialog::slotJobExited( bool normalExit, int exitStatus ) } } -void EditorsDialog::slotReceivedOutput( QString someOutput ) +void EditorsDialog::slotReceivedOutput( TQString someOutput ) { kdDebug(9006) << "OUTPUT: " << someOutput << endl; @@ -126,7 +126,7 @@ void EditorsDialog::slotReceivedOutput( QString someOutput ) /////////////////////////////////////////////////////////////////////////////// -void EditorsDialog::slotReceivedErrors( QString someErrors ) +void EditorsDialog::slotReceivedErrors( TQString someErrors ) { kdDebug(9006) << "ERRORS: " << someErrors << endl; } |