diff --git a/cervisia/ChangeLog b/cervisia/ChangeLog index 13984ed9..eaa88397 100644 --- a/cervisia/ChangeLog +++ b/cervisia/ChangeLog @@ -605,7 +605,7 @@ * Use DCOP stubs to access the methods of the cvs DCOP service * Added new method update() and checkout() to DCOP service - * Use KProcess::operator<< instead of QString::operator+= to + * Use TDEProcess::operator<< instead of QString::operator+= to build the command line * Make CVS_SERVER configurable in DCOP service (GUI is missing) @@ -1054,7 +1054,7 @@ * Layout fix in Add Watch dialog * Use bigger font in ChangeLog dialog, use - KGlobalSettings::fixedFont() for KDE2 + TDEGlobalSettings::fixedFont() for KDE2 2001-01-28 Bernd Gehrmann @@ -1117,7 +1117,7 @@ * Always use /bin/sh as shell * When the progress dialog is canceled, kill the underlying process instead of destroying the - KProcess object. This avoids a (superfluous) warning + TDEProcess object. This avoids a (superfluous) warning from KProcCtrl * Removed Ok button from the dialog. Patch by Guillaume Laurent diff --git a/cervisia/HACKING b/cervisia/HACKING index dfa61cdd..de233c8a 100644 --- a/cervisia/HACKING +++ b/cervisia/HACKING @@ -53,7 +53,7 @@ public: private: int m_intVar; - KProcess* m_proc; + TDEProcess* m_proc; }; } diff --git a/cervisia/annotateview.cpp b/cervisia/annotateview.cpp index 6d99c573..bdbcf2a9 100644 --- a/cervisia/annotateview.cpp +++ b/cervisia/annotateview.cpp @@ -105,13 +105,13 @@ void AnnotateViewItem::paintCell(TQPainter *p, const TQColorGroup &, int col, in switch (col) { case LineNumberColumn: - backgroundColor = KGlobalSettings::highlightColor(); - p->setPen(KGlobalSettings::highlightedTextColor()); + backgroundColor = TDEGlobalSettings::highlightColor(); + p->setPen(TDEGlobalSettings::highlightedTextColor()); break; default: - backgroundColor = m_odd ? KGlobalSettings::baseColor() - : KGlobalSettings::alternateBackgroundColor(); - p->setPen(KGlobalSettings::textColor()); + backgroundColor = m_odd ? TDEGlobalSettings::baseColor() + : TDEGlobalSettings::alternateBackgroundColor(); + p->setPen(TDEGlobalSettings::textColor()); break; }; diff --git a/cervisia/cervisiapart.cpp b/cervisia/cervisiapart.cpp index 775b5220..931adefa 100644 --- a/cervisia/cervisiapart.cpp +++ b/cervisia/cervisiapart.cpp @@ -103,7 +103,7 @@ CervisiaPart::CervisiaPart( TQWidget *parentWidget, const char *widgetName, , m_currentEditMenu(0) , m_jobType(Unknown) { - KGlobal::locale()->insertCatalogue("cervisia"); + TDEGlobal::locale()->insertCatalogue("cervisia"); setInstance( CervisiaFactory::instance() ); m_browserExt = new CervisiaBrowserExtension( this ); @@ -903,7 +903,7 @@ void CervisiaPart::slotUpdateToTag() else { tagopt = "-D "; - tagopt += KProcess::quote(l->date()); + tagopt += TDEProcess::quote(l->date()); } tagopt += " "; updateSandbox(tagopt); @@ -1914,7 +1914,7 @@ void CervisiaPart::guiActivateEvent(KParts::GUIActivateEvent* event) CervisiaBrowserExtension::CervisiaBrowserExtension( CervisiaPart *p ) : KParts::BrowserExtension( p, "CervisiaBrowserExtension" ) { - KGlobal::locale()->insertCatalogue("cervisia"); + TDEGlobal::locale()->insertCatalogue("cervisia"); } CervisiaBrowserExtension::~CervisiaBrowserExtension() diff --git a/cervisia/cervisiapart.kcfg b/cervisia/cervisiapart.kcfg index 6dea38cf..5c20fcf3 100644 --- a/cervisia/cervisiapart.kcfg +++ b/cervisia/cervisiapart.kcfg @@ -25,7 +25,7 @@ #ff8282 - KGlobalSettings::textColor() + TDEGlobalSettings::textColor() diff --git a/cervisia/cervisiashell.cpp b/cervisia/cervisiashell.cpp index 2e3ec62f..125df1ba 100644 --- a/cervisia/cervisiashell.cpp +++ b/cervisia/cervisiashell.cpp @@ -159,7 +159,7 @@ void CervisiaShell::slotConfigureKeys() void CervisiaShell::slotConfigureToolBars() { - saveMainWindowSettings( KGlobal::config(), autoSaveGroup() ); + saveMainWindowSettings( TDEGlobal::config(), autoSaveGroup() ); KEditToolbar dlg( factory() ); connect(&dlg,TQT_SIGNAL(newToolbarConfig()),this,TQT_SLOT(slotNewToolbarConfig())); dlg.exec(); @@ -167,7 +167,7 @@ void CervisiaShell::slotConfigureToolBars() void CervisiaShell::slotNewToolbarConfig() { - applyMainWindowSettings( KGlobal::config(), autoSaveGroup() ); + applyMainWindowSettings( TDEGlobal::config(), autoSaveGroup() ); } bool CervisiaShell::queryExit() @@ -203,7 +203,7 @@ void CervisiaShell::saveProperties(KConfig* config) void CervisiaShell::readSettings() { - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); config->setGroup("Session"); readProperties(config); @@ -212,7 +212,7 @@ void CervisiaShell::readSettings() void CervisiaShell::writeSettings() { - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); config->setGroup("Session"); saveProperties(config); diff --git a/cervisia/cvsservice/cvsjob.cpp b/cervisia/cvsservice/cvsjob.cpp index 3f4f06fe..24f42f48 100644 --- a/cervisia/cvsservice/cvsjob.cpp +++ b/cervisia/cvsservice/cvsjob.cpp @@ -31,12 +31,12 @@ struct CvsJob::Private { Private() : isRunning(false) { - childproc = new KProcess; + childproc = new TDEProcess; childproc->setUseShell(true, "/bin/sh"); } ~Private() { delete childproc; } - KProcess* childproc; + TDEProcess* childproc; TQString server; TQString rsh; TQString directory; @@ -176,17 +176,17 @@ bool CvsJob::execute() if( !d->directory.isEmpty() ) d->childproc->setWorkingDirectory(d->directory); - connect(d->childproc, TQT_SIGNAL(processExited(KProcess*)), + connect(d->childproc, TQT_SIGNAL(processExited(TDEProcess*)), TQT_SLOT(slotProcessExited())); - connect(d->childproc, TQT_SIGNAL(receivedStdout(KProcess*, char*, int)), - TQT_SLOT(slotReceivedStdout(KProcess*, char*, int))); - connect(d->childproc, TQT_SIGNAL(receivedStderr(KProcess*, char*, int)), - TQT_SLOT(slotReceivedStderr(KProcess*, char*, int)) ); + connect(d->childproc, TQT_SIGNAL(receivedStdout(TDEProcess*, char*, int)), + TQT_SLOT(slotReceivedStdout(TDEProcess*, char*, int))); + connect(d->childproc, TQT_SIGNAL(receivedStderr(TDEProcess*, char*, int)), + TQT_SLOT(slotReceivedStderr(TDEProcess*, char*, int)) ); kdDebug(8051) << "Execute cvs command: " << cvsCommand() << endl; d->isRunning = true; - return d->childproc->start(KProcess::NotifyOnExit, KProcess::AllOutput); + return d->childproc->start(TDEProcess::NotifyOnExit, TDEProcess::AllOutput); } @@ -208,7 +208,7 @@ void CvsJob::slotProcessExited() } -void CvsJob::slotReceivedStdout(KProcess* proc, char* buffer, int buflen) +void CvsJob::slotReceivedStdout(TDEProcess* proc, char* buffer, int buflen) { Q_UNUSED(proc); @@ -221,7 +221,7 @@ void CvsJob::slotReceivedStdout(KProcess* proc, char* buffer, int buflen) } -void CvsJob::slotReceivedStderr(KProcess* proc, char* buffer, int buflen) +void CvsJob::slotReceivedStderr(TDEProcess* proc, char* buffer, int buflen) { Q_UNUSED(proc); diff --git a/cervisia/cvsservice/cvsjob.h b/cervisia/cvsservice/cvsjob.h index d01feabc..3fde9b48 100644 --- a/cervisia/cvsservice/cvsjob.h +++ b/cervisia/cvsservice/cvsjob.h @@ -26,7 +26,7 @@ #include #include -class KProcess; +class TDEProcess; class KDE_EXPORT CvsJob : public TQObject, public DCOPObject @@ -72,8 +72,8 @@ k_dcop_signals: private slots: void slotProcessExited(); - void slotReceivedStdout(KProcess* proc, char* buffer, int buflen); - void slotReceivedStderr(KProcess* proc, char* buffer, int buflen); + void slotReceivedStdout(TDEProcess* proc, char* buffer, int buflen); + void slotReceivedStderr(TDEProcess* proc, char* buffer, int buflen); private: struct Private; diff --git a/cervisia/cvsservice/cvsservice.cpp b/cervisia/cvsservice/cvsservice.cpp index aa64bb4b..ce69caf5 100644 --- a/cervisia/cvsservice/cvsservice.cpp +++ b/cervisia/cvsservice/cvsservice.cpp @@ -167,7 +167,7 @@ DCOPRef CvsService::annotate(const TQString& fileName, const TQString& revision) // assemble the command line // (cvs log [FILE] && cvs annotate [-r rev] [FILE]) - TQString quotedName = KProcess::quote(fileName); + TQString quotedName = TDEProcess::quote(fileName); TQString cvsClient = d->repository->cvsClient(); *job << "(" << cvsClient << "log" << quotedName << "&&" @@ -199,7 +199,7 @@ DCOPRef CvsService::checkout(const TQString& workingDir, const TQString& reposit // cd [DIRECTORY] && cvs -d [REPOSITORY] checkout [-r tag] [-P] [MODULE] d->singleCvsJob->clearCvsCommand(); - *d->singleCvsJob << "cd" << KProcess::quote(workingDir) << "&&" + *d->singleCvsJob << "cd" << TDEProcess::quote(workingDir) << "&&" << repo.cvsClient() << "-d" << repository << "checkout"; @@ -229,7 +229,7 @@ DCOPRef CvsService::checkout(const TQString& workingDir, const TQString& reposit // cd [DIRECTORY] && cvs -d [REPOSITORY] co [-r tag] [-P] [-d alias] [MODULE] d->singleCvsJob->clearCvsCommand(); - *d->singleCvsJob << "cd" << KProcess::quote(workingDir) << "&&" + *d->singleCvsJob << "cd" << TDEProcess::quote(workingDir) << "&&" << repo.cvsClient() << "-d" << repository; if( exportOnly) @@ -265,7 +265,7 @@ DCOPRef CvsService::checkout(const TQString& workingDir, const TQString& reposit // cd [DIRECTORY] && cvs -d [REPOSITORY] co [-r tag] [-P] [-d alias] [MODULE] d->singleCvsJob->clearCvsCommand(); - *d->singleCvsJob << "cd" << KProcess::quote(workingDir) << "&&" + *d->singleCvsJob << "cd" << TDEProcess::quote(workingDir) << "&&" << repo.cvsClient() << "-d" << repository; if( exportOnly) @@ -305,7 +305,7 @@ DCOPRef CvsService::commit(const TQStringList& files, const TQString& commitMess if( !recursive ) *d->singleCvsJob << "-l"; - *d->singleCvsJob << "-m" << KProcess::quote(commitMessage) + *d->singleCvsJob << "-m" << TDEProcess::quote(commitMessage) << CvsServiceUtils::joinFileList(files) << REDIRECT_STDERR; return d->setupNonConcurrentJob(); @@ -321,9 +321,9 @@ DCOPRef CvsService::createRepository(const TQString& repository) // cvs -d [REPOSITORY] init d->singleCvsJob->clearCvsCommand(); - *d->singleCvsJob << "mkdir -p" << KProcess::quote(repository) << "&&" + *d->singleCvsJob << "mkdir -p" << TDEProcess::quote(repository) << "&&" << d->repository->cvsClient() - << "-d" << KProcess::quote(repository) + << "-d" << TDEProcess::quote(repository) << "init"; return d->setupNonConcurrentJob(); @@ -348,7 +348,7 @@ DCOPRef CvsService::createTag(const TQStringList& files, const TQString& tag, if( force ) *d->singleCvsJob << "-F"; - *d->singleCvsJob << KProcess::quote(tag) + *d->singleCvsJob << TDEProcess::quote(tag) << CvsServiceUtils::joinFileList(files); return d->setupNonConcurrentJob(); @@ -373,7 +373,7 @@ DCOPRef CvsService::deleteTag(const TQStringList& files, const TQString& tag, if( force ) *d->singleCvsJob << "-F"; - *d->singleCvsJob << KProcess::quote(tag) + *d->singleCvsJob << TDEProcess::quote(tag) << CvsServiceUtils::joinFileList(files); return d->setupNonConcurrentJob(); @@ -392,7 +392,7 @@ DCOPRef CvsService::downloadCvsIgnoreFile(const TQString& repository, // cvs -d [REPOSITORY] -q checkout -p CVSROOT/cvsignore > [OUTPUTFILE] *job << repo.cvsClient() << "-d" << repository << "-q checkout -p CVSROOT/cvsignore >" - << KProcess::quote(outputFile); + << TDEProcess::quote(outputFile); // return a DCOP reference to the cvs job return DCOPRef(d->appId, job->objId()); @@ -414,9 +414,9 @@ DCOPRef CvsService::downloadRevision(const TQString& fileName, *job << d->repository->cvsClient() << "update -p"; if( !revision.isEmpty() ) - *job << "-r" << KProcess::quote(revision); + *job << "-r" << TDEProcess::quote(revision); - *job << KProcess::quote(fileName) << ">" << KProcess::quote(outputFile); + *job << TDEProcess::quote(fileName) << ">" << TDEProcess::quote(outputFile); // return a DCOP reference to the cvs job return DCOPRef(d->appId, job->objId()); @@ -439,11 +439,11 @@ DCOPRef CvsService::downloadRevision(const TQString& fileName, // cvs update -p -r [REVA] [FILE] > [OUTPUTFILEA] ; // cvs update -p -r [REVB] [FILE] > [OUTPUTFILEB] *job << d->repository->cvsClient() << "update -p" - << "-r" << KProcess::quote(revA) - << KProcess::quote(fileName) << ">" << KProcess::quote(outputFileA) + << "-r" << TDEProcess::quote(revA) + << TDEProcess::quote(fileName) << ">" << TDEProcess::quote(outputFileA) << ";" << d->repository->cvsClient() << "update -p" - << "-r" << KProcess::quote(revB) - << KProcess::quote(fileName) << ">" << KProcess::quote(outputFileB); + << "-r" << TDEProcess::quote(revB) + << TDEProcess::quote(fileName) << ">" << TDEProcess::quote(outputFileB); // return a DCOP reference to the cvs job return DCOPRef(d->appId, job->objId()); @@ -476,12 +476,12 @@ DCOPRef CvsService::diff(const TQString& fileName, const TQString& revA, << format; if( !revA.isEmpty() ) - *job << "-r" << KProcess::quote(revA); + *job << "-r" << TDEProcess::quote(revA); if( !revB.isEmpty() ) - *job << "-r" << KProcess::quote(revB); + *job << "-r" << TDEProcess::quote(revB); - *job << KProcess::quote(fileName); + *job << TDEProcess::quote(fileName); // return a DCOP reference to the cvs job return DCOPRef(d->appId, job->objId()); @@ -550,7 +550,7 @@ DCOPRef CvsService::import(const TQString& workingDir, const TQString& repositor // assemble the command line d->singleCvsJob->clearCvsCommand(); - *d->singleCvsJob << "cd" << KProcess::quote(workingDir) << "&&" + *d->singleCvsJob << "cd" << TDEProcess::quote(workingDir) << "&&" << repo.cvsClient() << "-d" << repository << "import"; @@ -560,7 +560,7 @@ DCOPRef CvsService::import(const TQString& workingDir, const TQString& repositor const TQString ignore = ignoreList.stripWhiteSpace(); if( !ignore.isEmpty() ) - *d->singleCvsJob << "-I" << KProcess::quote(ignore); + *d->singleCvsJob << "-I" << TDEProcess::quote(ignore); TQString logMessage = comment.stripWhiteSpace(); logMessage.prepend("\""); @@ -587,7 +587,7 @@ DCOPRef CvsService::import(const TQString& workingDir, const TQString& repositor // assemble the command line d->singleCvsJob->clearCvsCommand(); - *d->singleCvsJob << "cd" << KProcess::quote(workingDir) << "&&" + *d->singleCvsJob << "cd" << TDEProcess::quote(workingDir) << "&&" << repo.cvsClient() << "-d" << repository << "import"; @@ -600,7 +600,7 @@ DCOPRef CvsService::import(const TQString& workingDir, const TQString& repositor const TQString ignore = ignoreList.stripWhiteSpace(); if( !ignore.isEmpty() ) - *d->singleCvsJob << "-I" << KProcess::quote(ignore); + *d->singleCvsJob << "-I" << TDEProcess::quote(ignore); TQString logMessage = comment.stripWhiteSpace(); logMessage.prepend("\""); @@ -639,7 +639,7 @@ DCOPRef CvsService::log(const TQString& fileName) // assemble the command line // cvs log [FILE] - *job << d->repository->cvsClient() << "log" << KProcess::quote(fileName); + *job << d->repository->cvsClient() << "log" << TDEProcess::quote(fileName); // return a DCOP reference to the cvs job return DCOPRef(d->appId, job->objId()); diff --git a/cervisia/cvsservice/cvsserviceutils.cpp b/cervisia/cvsservice/cvsserviceutils.cpp index 33585f49..b08c4357 100644 --- a/cervisia/cvsservice/cvsserviceutils.cpp +++ b/cervisia/cvsservice/cvsserviceutils.cpp @@ -34,7 +34,7 @@ TQString CvsServiceUtils::joinFileList(const TQStringList& files) for( ; it != end; ++it ) { - result += KProcess::quote(*it); + result += TDEProcess::quote(*it); result += " "; } diff --git a/cervisia/cvsservice/cvsserviceutils.h b/cervisia/cvsservice/cvsserviceutils.h index 145746d5..7e47bf5b 100644 --- a/cervisia/cvsservice/cvsserviceutils.h +++ b/cervisia/cvsservice/cvsserviceutils.h @@ -30,7 +30,7 @@ namespace CvsServiceUtils /** * Joins a list of file names to one TQString and quotes - * each name properly for usage with KProcess. + * each name properly for usage with TDEProcess. */ TQString joinFileList(const TQStringList& files); diff --git a/cervisia/cvsservice/sshagent.cpp b/cervisia/cvsservice/sshagent.cpp index b620cc98..7590b757 100644 --- a/cervisia/cvsservice/sshagent.cpp +++ b/cervisia/cvsservice/sshagent.cpp @@ -91,7 +91,7 @@ bool SshAgent::addSshIdentities() return false; // add identities to ssh-agent - KProcess proc; + TDEProcess proc; proc.setEnvironment("SSH_AGENT_PID", m_pid); proc.setEnvironment("SSH_AUTH_SOCK", m_authSock); @@ -99,12 +99,12 @@ bool SshAgent::addSshIdentities() proc << "ssh-add"; - connect(&proc, TQT_SIGNAL(receivedStdout(KProcess*, char*, int)), - TQT_SLOT(slotReceivedStdout(KProcess*, char*, int))); - connect(&proc, TQT_SIGNAL(receivedStderr(KProcess*, char*, int)), - TQT_SLOT(slotReceivedStderr(KProcess*, char*, int))); + connect(&proc, TQT_SIGNAL(receivedStdout(TDEProcess*, char*, int)), + TQT_SLOT(slotReceivedStdout(TDEProcess*, char*, int))); + connect(&proc, TQT_SIGNAL(receivedStderr(TDEProcess*, char*, int)), + TQT_SLOT(slotReceivedStderr(TDEProcess*, char*, int))); - proc.start(KProcess::DontCare, KProcess::AllOutput); + proc.start(TDEProcess::DontCare, TDEProcess::AllOutput); // wait for process to finish // TODO CL use timeout? @@ -123,17 +123,17 @@ void SshAgent::killSshAgent() if( !m_isRunning || !m_isOurAgent ) return; - KProcess proc; + TDEProcess proc; proc << "kill" << m_pid; - proc.start(KProcess::DontCare, KProcess::NoCommunication); + proc.start(TDEProcess::DontCare, TDEProcess::NoCommunication); kdDebug(8051) << "SshAgent::killSshAgent(): killed pid = " << m_pid << endl; } -void SshAgent::slotProcessExited(KProcess*) +void SshAgent::slotProcessExited(TDEProcess*) { kdDebug(8051) << "SshAgent::slotProcessExited(): ENTER" << endl; @@ -187,7 +187,7 @@ void SshAgent::slotProcessExited(KProcess*) } -void SshAgent::slotReceivedStdout(KProcess* proc, char* buffer, int buflen) +void SshAgent::slotReceivedStdout(TDEProcess* proc, char* buffer, int buflen) { Q_UNUSED(proc); @@ -198,7 +198,7 @@ void SshAgent::slotReceivedStdout(KProcess* proc, char* buffer, int buflen) } -void SshAgent::slotReceivedStderr(KProcess* proc, char* buffer, int buflen) +void SshAgent::slotReceivedStderr(TDEProcess* proc, char* buffer, int buflen) { Q_UNUSED(proc); @@ -213,18 +213,18 @@ bool SshAgent::startSshAgent() { kdDebug(8051) << "SshAgent::startSshAgent(): ENTER" << endl; - KProcess proc; + TDEProcess proc; proc << "ssh-agent"; - connect(&proc, TQT_SIGNAL(processExited(KProcess*)), - TQT_SLOT(slotProcessExited(KProcess*))); - connect(&proc, TQT_SIGNAL(receivedStdout(KProcess*, char*, int)), - TQT_SLOT(slotReceivedStdout(KProcess*, char*, int))); - connect(&proc, TQT_SIGNAL(receivedStderr(KProcess*, char*, int)), - TQT_SLOT(slotReceivedStderr(KProcess*, char*, int)) ); + connect(&proc, TQT_SIGNAL(processExited(TDEProcess*)), + TQT_SLOT(slotProcessExited(TDEProcess*))); + connect(&proc, TQT_SIGNAL(receivedStdout(TDEProcess*, char*, int)), + TQT_SLOT(slotReceivedStdout(TDEProcess*, char*, int))); + connect(&proc, TQT_SIGNAL(receivedStderr(TDEProcess*, char*, int)), + TQT_SLOT(slotReceivedStderr(TDEProcess*, char*, int)) ); - proc.start(KProcess::NotifyOnExit, KProcess::All); + proc.start(TDEProcess::NotifyOnExit, TDEProcess::All); // wait for process to finish // TODO CL use timeout? diff --git a/cervisia/cvsservice/sshagent.h b/cervisia/cvsservice/sshagent.h index 5276f827..b99b47d1 100644 --- a/cervisia/cvsservice/sshagent.h +++ b/cervisia/cvsservice/sshagent.h @@ -25,7 +25,7 @@ #include #include -class KProcess; +class TDEProcess; class SshAgent : public TQObject @@ -46,9 +46,9 @@ public: TQString authSock() const { return m_authSock; } private slots: - void slotProcessExited(KProcess*); - void slotReceivedStdout(KProcess* proc, char* buffer, int buflen); - void slotReceivedStderr(KProcess* proc, char* buffer, int buflen); + void slotProcessExited(TDEProcess*); + void slotReceivedStdout(TDEProcess* proc, char* buffer, int buflen); + void slotReceivedStderr(TDEProcess* proc, char* buffer, int buflen); private: bool startSshAgent(); diff --git a/cervisia/diffdlg.cpp b/cervisia/diffdlg.cpp index 720d3706..993f4f6c 100644 --- a/cervisia/diffdlg.cpp +++ b/cervisia/diffdlg.cpp @@ -374,9 +374,9 @@ void DiffDialog::callExternalDiff(const TQString& extdiff, CvsService_stub* serv if( !service->ok() ) return; - extcmdline += KProcess::quote(revAFilename); + extcmdline += TDEProcess::quote(revAFilename); extcmdline += " "; - extcmdline += KProcess::quote(revBFilename); + extcmdline += TDEProcess::quote(revBFilename); } else { @@ -386,9 +386,9 @@ void DiffDialog::callExternalDiff(const TQString& extdiff, CvsService_stub* serv if( !service->ok() ) return; - extcmdline += KProcess::quote(revAFilename); + extcmdline += TDEProcess::quote(revAFilename); extcmdline += " "; - extcmdline += KProcess::quote(TQFileInfo(fileName).absFilePath()); + extcmdline += TDEProcess::quote(TQFileInfo(fileName).absFilePath()); } ProgressDialog dlg(this, "Diff", job, "diff"); @@ -396,10 +396,10 @@ void DiffDialog::callExternalDiff(const TQString& extdiff, CvsService_stub* serv { // call external diff application // TODO CL maybe use system()? - KProcess proc; + TDEProcess proc; proc.setUseShell(true, "/bin/sh"); proc << extcmdline; - proc.start(KProcess::DontCare); + proc.start(TDEProcess::DontCare); } } diff --git a/cervisia/diffview.cpp b/cervisia/diffview.cpp index 4d973372..90e82516 100644 --- a/cervisia/diffview.cpp +++ b/cervisia/diffview.cpp @@ -319,8 +319,8 @@ void DiffView::paintCell(TQPainter *p, int row, int col) TQFont oldFont(p->font()); if (item->type==Separator) { - backgroundColor = KGlobalSettings::highlightColor(); - p->setPen(KGlobalSettings::highlightedTextColor()); + backgroundColor = TDEGlobalSettings::highlightColor(); + p->setPen(TDEGlobalSettings::highlightedTextColor()); inverted = false; align = AlignLeft; innerborder = 0; @@ -332,8 +332,8 @@ void DiffView::paintCell(TQPainter *p, int row, int col) } else if (col == 0 && linenos) { - backgroundColor = KGlobalSettings::highlightColor(); - p->setPen(KGlobalSettings::highlightedTextColor()); + backgroundColor = TDEGlobalSettings::highlightColor(); + p->setPen(TDEGlobalSettings::highlightedTextColor()); inverted = false; align = AlignLeft; innerborder = 0; @@ -344,8 +344,8 @@ void DiffView::paintCell(TQPainter *p, int row, int col) } else if (marker && (col == 0 || col == 1)) { - backgroundColor = KGlobalSettings::alternateBackgroundColor(); - p->setPen(KGlobalSettings::textColor()); + backgroundColor = TDEGlobalSettings::alternateBackgroundColor(); + p->setPen(TDEGlobalSettings::textColor()); inverted = false; align = AlignRight; innerborder = BORDER; @@ -359,8 +359,8 @@ void DiffView::paintCell(TQPainter *p, int row, int col) (item->type==Change)? diffChangeColor : (item->type==Insert)? diffInsertColor : (item->type==Delete)? diffDeleteColor - : (item->type==Neutral)? KGlobalSettings::alternateBackgroundColor() : KGlobalSettings::baseColor(); - p->setPen(KGlobalSettings::textColor()); + : (item->type==Neutral)? TDEGlobalSettings::alternateBackgroundColor() : TDEGlobalSettings::baseColor(); + p->setPen(TDEGlobalSettings::textColor()); inverted = item->inverted; align = AlignLeft; innerborder = 0; @@ -370,7 +370,7 @@ void DiffView::paintCell(TQPainter *p, int row, int col) if (inverted) { p->setPen(backgroundColor); - backgroundColor = KGlobalSettings::textColor(); + backgroundColor = TDEGlobalSettings::textColor(); TQFont f(oldFont); f.setBold(true); p->setFont(f); @@ -450,7 +450,7 @@ void DiffZoomWidget::paintEvent(TQPaintEvent *) const TQByteArray& lineTypes(diffview->compressedContent()); TQPixmap pixbuf(width(), scrollBarGroove.height()); - pixbuf.fill(KGlobalSettings::baseColor()); + pixbuf.fill(TDEGlobalSettings::baseColor()); TQPainter p(&pixbuf, this); if (const unsigned int numberOfLines = lineTypes.size()) @@ -482,7 +482,7 @@ void DiffZoomWidget::paintEvent(TQPaintEvent *) break; case ' ': case 'N': - color = KGlobalSettings::alternateBackgroundColor(); + color = TDEGlobalSettings::alternateBackgroundColor(); break; } diff --git a/cervisia/historydlg.cpp b/cervisia/historydlg.cpp index 4beb15c0..20e95d37 100644 --- a/cervisia/historydlg.cpp +++ b/cervisia/historydlg.cpp @@ -102,7 +102,7 @@ TQString HistoryItem::text(int col) const switch (col) { case Date: - sText = KGlobal::locale()->formatDateTime(m_date); + sText = TDEGlobal::locale()->formatDateTime(m_date); break; default: sText = TQListViewItem::text(col); diff --git a/cervisia/loginfo.cpp b/cervisia/loginfo.cpp index b97ff1f0..07468ae7 100644 --- a/cervisia/loginfo.cpp +++ b/cervisia/loginfo.cpp @@ -106,9 +106,9 @@ TQString LogInfo::createToolTipText(bool showTime) const TQString LogInfo::dateTimeToString(bool showTime, bool shortFormat) const { if( showTime ) - return KGlobal::locale()->formatDateTime(m_dateTime, shortFormat); + return TDEGlobal::locale()->formatDateTime(m_dateTime, shortFormat); else - return KGlobal::locale()->formatDate(m_dateTime.date(), shortFormat); + return TDEGlobal::locale()->formatDate(m_dateTime.date(), shortFormat); } diff --git a/cervisia/logtree.cpp b/cervisia/logtree.cpp index 95bf9035..57d635ca 100644 --- a/cervisia/logtree.cpp +++ b/cervisia/logtree.cpp @@ -399,8 +399,8 @@ void LogTreeView::paintRevisionCell(TQPainter *p, // The box itself if (selected) { - p->fillRect(rect, KGlobalSettings::highlightColor()); - p->setPen(KGlobalSettings::highlightedTextColor()); + p->fillRect(rect, TDEGlobalSettings::highlightColor()); + p->setPen(TDEGlobalSettings::highlightedTextColor()); } else { diff --git a/cervisia/settingsdlg.cpp b/cervisia/settingsdlg.cpp index c6e39bf9..b5923964 100644 --- a/cervisia/settingsdlg.cpp +++ b/cervisia/settingsdlg.cpp @@ -51,7 +51,7 @@ namespace // helper method to load icons for configuration pages inline TQPixmap LoadIcon(const char* iconName) { - KIconLoader* loader = KGlobal::instance()->iconLoader(); + KIconLoader* loader = TDEGlobal::instance()->iconLoader(); return loader->loadIcon(TQString::fromLatin1(iconName), KIcon::NoGroup, KIcon::SizeMedium); } diff --git a/cervisia/tooltip.cpp b/cervisia/tooltip.cpp index 728945ca..5cd34b89 100644 --- a/cervisia/tooltip.cpp +++ b/cervisia/tooltip.cpp @@ -50,7 +50,7 @@ void ToolTip::maybeTip(const TQPoint& pos) text = truncateLines(text, font(), parentWidget()->mapToGlobal(pos), - KGlobalSettings::desktopGeometry(parentWidget())); + TDEGlobalSettings::desktopGeometry(parentWidget())); tip(rect, text); } } diff --git a/cervisia/updateview_items.cpp b/cervisia/updateview_items.cpp index 360e137c..34204ca8 100644 --- a/cervisia/updateview_items.cpp +++ b/cervisia/updateview_items.cpp @@ -571,7 +571,7 @@ void UpdateFileItem::setRevTag(const TQString& rev, const TQString& tag) const TQDateTime tagDateTimeLocal(tagDateTimeUtc.addSecs(localUtcOffset)); - m_entry.m_tag = KGlobal::locale()->formatDateTime(tagDateTimeLocal); + m_entry.m_tag = TDEGlobal::locale()->formatDateTime(tagDateTimeLocal); } else m_entry.m_tag = tag; @@ -709,7 +709,7 @@ TQString UpdateFileItem::text(int column) const break; case Timestamp: if (entry().m_dateTime.isValid()) - result = KGlobal::locale()->formatDateTime(entry().m_dateTime); + result = TDEGlobal::locale()->formatDateTime(entry().m_dateTime); break; } @@ -754,7 +754,7 @@ void UpdateFileItem::paintCell(TQPainter *p, const TQFont oldFont(p->font()); TQColorGroup mycg(cg); - if (color.isValid() && color != KGlobalSettings::textColor()) + if (color.isValid() && color != TDEGlobalSettings::textColor()) { TQFont myFont(oldFont); myFont.setBold(true); diff --git a/kapptemplate/kapp/app.cpp b/kapptemplate/kapp/app.cpp index 397982fa..f7888c47 100644 --- a/kapptemplate/kapp/app.cpp +++ b/kapptemplate/kapp/app.cpp @@ -224,7 +224,7 @@ void ${APP_NAME}::filePrint() void ${APP_NAME}::optionsConfigureToolbars() { // use the standard toolbar editor - saveMainWindowSettings( KGlobal::config(), autoSaveGroup() ); + saveMainWindowSettings( TDEGlobal::config(), autoSaveGroup() ); KEditToolbar dlg(actionCollection()); connect(&dlg, TQT_SIGNAL(newToolbarConfig()), this, TQT_SLOT(newToolbarConfig())); dlg.exec(); @@ -235,7 +235,7 @@ void ${APP_NAME}::newToolbarConfig() // this slot is called when user clicks "Ok" or "Apply" in the toolbar editor. // recreate our GUI, and re-apply the settings (e.g. "text under icons", etc.) createGUI(); - applyMainWindowSettings( KGlobal::config(), autoSaveGroup() ); + applyMainWindowSettings( TDEGlobal::config(), autoSaveGroup() ); } void ${APP_NAME}::optionsPreferences() diff --git a/kapptemplate/kpartapp/app.cpp b/kapptemplate/kpartapp/app.cpp index c5d21f06..d62e0883 100644 --- a/kapptemplate/kpartapp/app.cpp +++ b/kapptemplate/kpartapp/app.cpp @@ -132,7 +132,7 @@ void ${APP_NAME}::optionsConfigureKeys() void ${APP_NAME}::optionsConfigureToolbars() { - saveMainWindowSettings(KGlobal::config(), autoSaveGroup()); + saveMainWindowSettings(TDEGlobal::config(), autoSaveGroup()); // use the standard toolbar editor KEditToolbar dlg(factory()); @@ -143,7 +143,7 @@ void ${APP_NAME}::optionsConfigureToolbars() void ${APP_NAME}::applyNewToolbarConfig() { - applyMainWindowSettings(KGlobal::config(), autoSaveGroup()); + applyMainWindowSettings(TDEGlobal::config(), autoSaveGroup()); } void ${APP_NAME}::fileOpen() diff --git a/kbabel/addons/preview/pothumbcreator.cpp b/kbabel/addons/preview/pothumbcreator.cpp index 3dbd6611..fb3d9daa 100644 --- a/kbabel/addons/preview/pothumbcreator.cpp +++ b/kbabel/addons/preview/pothumbcreator.cpp @@ -324,17 +324,17 @@ bool PoThumbCreator::create(const TQString &path, int width, int height, TQImage TQPixmap kbabelPix; if(pix.width() < 80) { - kbabelPix = KGlobal::iconLoader()->loadIcon("kbabel" + kbabelPix = TDEGlobal::iconLoader()->loadIcon("kbabel" ,KIcon::Small,16,KIcon::DefaultState,0,true); } else if(pix.width() < 150) { - kbabelPix = KGlobal::iconLoader()->loadIcon("kbabel" + kbabelPix = TDEGlobal::iconLoader()->loadIcon("kbabel" ,KIcon::Desktop,32,KIcon::DefaultState,0,true); } else { - kbabelPix = KGlobal::iconLoader()->loadIcon("kbabel" + kbabelPix = TDEGlobal::iconLoader()->loadIcon("kbabel" ,KIcon::Desktop,48,KIcon::DefaultState,0,true); } diff --git a/kbabel/catalogmanager/catalogmanager.cpp b/kbabel/catalogmanager/catalogmanager.cpp index f8455145..1eaa2c8b 100644 --- a/kbabel/catalogmanager/catalogmanager.cpp +++ b/kbabel/catalogmanager/catalogmanager.cpp @@ -214,7 +214,7 @@ void CatalogManager::init() void CatalogManager::setupActions() { - KGlobal::iconLoader()->addAppDir("kbabel"); + TDEGlobal::iconLoader()->addAppDir("kbabel"); KAction *action; @@ -1169,13 +1169,13 @@ bool CatalogManager::queryClose() void CatalogManager::saveView() { - saveMainWindowSettings( KGlobal::config(), "View"); + saveMainWindowSettings( TDEGlobal::config(), "View"); } void CatalogManager::restoreView() { - applyMainWindowSettings( KGlobal::config(), "View"); + applyMainWindowSettings( TDEGlobal::config(), "View"); KToggleAction * toggle = (KToggleAction*)actionCollection()-> action(KStdAction::stdName(KStdAction::ShowStatusbar)); diff --git a/kbabel/catalogmanager/catalogmanagerview.cpp b/kbabel/catalogmanager/catalogmanagerview.cpp index 6bca24c1..1be2cba8 100644 --- a/kbabel/catalogmanager/catalogmanagerview.cpp +++ b/kbabel/catalogmanager/catalogmanagerview.cpp @@ -221,7 +221,7 @@ CatalogManagerView::CatalogManagerView(KBabel::Project::Ptr project, TQWidget* p connect( svnhandler, TQT_SIGNAL( signalFilesCommitted( const TQStringList& ) ), this, TQT_SLOT( updateFiles( const TQStringList& ) ) ); - KConfig *config = KGlobal::config(); + KConfig *config = TDEGlobal::config(); restoreView(config); _dictBox->readSettings(_project->config()); @@ -237,7 +237,7 @@ CatalogManagerView::~CatalogManagerView() if(_settings.killCmdOnExit) { - KProcess* proc; + TDEProcess* proc; for ( proc=_pendingProcesses.first(); proc != 0; proc=_pendingProcesses.next() ) { proc->kill(SIGKILL); @@ -715,7 +715,7 @@ void CatalogManagerView::markedStatistics() void CatalogManagerView::showStatistics( CatManListItem *i, TQStringList &childrenList ) { - KLocale *locale = KGlobal::locale(); + KLocale *locale = TDEGlobal::locale(); TQString msg; int totalPackages=0; @@ -1617,18 +1617,18 @@ void CatalogManagerView::slotDirCommand(int index) kdDebug(KBABEL_CATMAN) << cmd << endl; - KProcess* proc = new KShellProcess(); + TDEProcess* proc = new KShellProcess(); _pendingProcesses.append(proc); - connect( proc,TQT_SIGNAL( processExited(KProcess *) ), this - ,TQT_SLOT( processEnded(KProcess*) ) ); - connect( proc,TQT_SIGNAL( receivedStdout(KProcess*,char*,int) ), this - ,TQT_SLOT( showOutput(KProcess*,char*,int) ) ); - connect( proc,TQT_SIGNAL( receivedStderr(KProcess*,char*,int) ), this - ,TQT_SLOT( showOutput(KProcess*,char*,int) ) ); + connect( proc,TQT_SIGNAL( processExited(TDEProcess *) ), this + ,TQT_SLOT( processEnded(TDEProcess*) ) ); + connect( proc,TQT_SIGNAL( receivedStdout(TDEProcess*,char*,int) ), this + ,TQT_SLOT( showOutput(TDEProcess*,char*,int) ) ); + connect( proc,TQT_SIGNAL( receivedStderr(TDEProcess*,char*,int) ), this + ,TQT_SLOT( showOutput(TDEProcess*,char*,int) ) ); *proc << "cd" << item->poFile() << ";" << cmd; - proc->start(KProcess::NotifyOnExit,KProcess::AllOutput); + proc->start(TDEProcess::NotifyOnExit,TDEProcess::AllOutput); } } @@ -1650,18 +1650,18 @@ void CatalogManagerView::slotFileCommand(int index) kdDebug(KBABEL_CATMAN) << cmd << endl; - KProcess* proc = new KShellProcess(); + TDEProcess* proc = new KShellProcess(); _pendingProcesses.append(proc); - connect( proc,TQT_SIGNAL( processExited(KProcess *) ), this - ,TQT_SLOT( processEnded(KProcess*) ) ); - connect( proc,TQT_SIGNAL( receivedStdout(KProcess*,char*,int) ), this - ,TQT_SLOT( showOutput(KProcess*,char*,int) ) ); - connect( proc,TQT_SIGNAL( receivedStderr(KProcess*,char*,int) ), this - ,TQT_SLOT( showOutput(KProcess*,char*,int) ) ); + connect( proc,TQT_SIGNAL( processExited(TDEProcess *) ), this + ,TQT_SLOT( processEnded(TDEProcess*) ) ); + connect( proc,TQT_SIGNAL( receivedStdout(TDEProcess*,char*,int) ), this + ,TQT_SLOT( showOutput(TDEProcess*,char*,int) ) ); + connect( proc,TQT_SIGNAL( receivedStderr(TDEProcess*,char*,int) ), this + ,TQT_SLOT( showOutput(TDEProcess*,char*,int) ) ); *proc << "cd" << parent->poFile() << ";" << cmd; - proc->start(KProcess::NotifyOnExit,KProcess::AllOutput); + proc->start(TDEProcess::NotifyOnExit,TDEProcess::AllOutput); } } @@ -2517,7 +2517,7 @@ void CatalogManagerView::contentsMouseMoveEvent(TQMouseEvent* event) { if(event->state() & Qt::LeftButton) { - const int delay = KGlobalSettings::dndEventDelay(); + const int delay = TDEGlobalSettings::dndEventDelay(); if(TQABS( event->pos().x() - _pressPos.x() ) >= delay || TQABS( event->pos().y() - _pressPos.y() ) >= delay) { @@ -2532,7 +2532,7 @@ void CatalogManagerView::contentsMouseMoveEvent(TQMouseEvent* event) uri.append(TQUriDrag::localFileToUri(item->potFile())); TQUriDrag* drag = new TQUriDrag(uri,this); - TQPixmap icon=KGlobal::iconLoader()->loadIcon("txt",KIcon::Desktop); + TQPixmap icon=TDEGlobal::iconLoader()->loadIcon("txt",KIcon::Desktop); drag->setPixmap(icon,TQPoint(icon.width()/2,icon.height()/2)); drag->drag(); } @@ -2593,13 +2593,13 @@ void CatalogManagerView::deleteDirItem(TQString relDir) -void CatalogManagerView::processEnded(KProcess* proc) +void CatalogManagerView::processEnded(TDEProcess* proc) { _pendingProcesses.removeRef(proc); } -void CatalogManagerView::showOutput(KProcess*, char *buffer, int buflen) +void CatalogManagerView::showOutput(TDEProcess*, char *buffer, int buflen) { const TQCString output(buffer,buflen+1); diff --git a/kbabel/catalogmanager/catalogmanagerview.h b/kbabel/catalogmanager/catalogmanagerview.h index 8a7ea790..1238ed52 100644 --- a/kbabel/catalogmanager/catalogmanagerview.h +++ b/kbabel/catalogmanager/catalogmanagerview.h @@ -365,8 +365,8 @@ protected slots: void slotFileCommand(int); private slots: - void showOutput(KProcess *proc, char *buffer, int buflen); - void processEnded(KProcess *proc); + void showOutput(TDEProcess *proc, char *buffer, int buflen); + void processEnded(TDEProcess *proc); void columnClicked(TQListViewItem * item, const TQPoint & pnt, int c); void slotToggleCVSOrSVNColumn( bool ); @@ -432,7 +432,7 @@ private: bool _stopSearch; int _updateNesting; - TQPtrList _pendingProcesses; + TQPtrList _pendingProcesses; TQTextEdit* _logView; KDialogBase* _logWindow; diff --git a/kbabel/catalogmanager/findinfilesdialog.cpp b/kbabel/catalogmanager/findinfilesdialog.cpp index 65a92c57..f70d9d10 100644 --- a/kbabel/catalogmanager/findinfilesdialog.cpp +++ b/kbabel/catalogmanager/findinfilesdialog.cpp @@ -156,7 +156,7 @@ void FindInFilesDialog::setReplaceOpts(ReplaceOptions options) void FindInFilesDialog::readSettings() { - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); if(isReplaceDialog()) { KConfigGroupSaver cgs(config,"ReplaceDialog"); @@ -201,7 +201,7 @@ void FindInFilesDialog::readSettings() void FindInFilesDialog::saveSettings() { - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); if(isReplaceDialog()) { KConfigGroupSaver cgs(config,"ReplaceDialog"); diff --git a/kbabel/catalogmanager/libcvs/cvsdialog.cpp b/kbabel/catalogmanager/libcvs/cvsdialog.cpp index 7532320a..054e8489 100644 --- a/kbabel/catalogmanager/libcvs/cvsdialog.cpp +++ b/kbabel/catalogmanager/libcvs/cvsdialog.cpp @@ -120,7 +120,7 @@ CVSDialog::CVSDialog( CVS::Command cmd, TQWidget * parent, KSharedConfig* config // The last encoding will be added at the top of the list, when the seetings will be read. encodingList << i18n( "Descriptive encoding name", "Recommended ( %1 )" ).arg( "UTF-8" ); encodingList << i18n( "Descriptive encoding name", "Locale ( %1 )" ).arg( TQTextCodec::codecForLocale()->mimeName() ); - encodingList += KGlobal::charsets()->descriptiveEncodingNames(); + encodingList += TDEGlobal::charsets()->descriptiveEncodingNames(); m_encodingComboBox->insertStringList( encodingList ); connect( oldMessages, TQT_SIGNAL( activated( int ) ), @@ -217,10 +217,10 @@ void CVSDialog::slotExecuteCommand( ) // Nothing to do here. if ( _commandLine.isEmpty( ) ) return; - kdDebug() << "Preparing KProcess" << endl; + kdDebug() << "Preparing TDEProcess" << endl; // Create a new shell process - p = new KProcess; + p = new TDEProcess; p->setUseShell( true, "/bin/sh" ); if ( _cmd == CVS::Commit ) { @@ -239,7 +239,7 @@ void CVSDialog::slotExecuteCommand( ) return; } - m_encoding = KGlobal::charsets()->encodingForName( m_encodingComboBox->currentText() ); + m_encoding = TDEGlobal::charsets()->encodingForName( m_encodingComboBox->currentText() ); TQTextCodec* codec = TQTextCodec::codecForName( m_encoding.utf8() ); if ( !codec ) @@ -282,7 +282,7 @@ void CVSDialog::slotExecuteCommand( ) } // Change the command line to have the real name of the temporary file - _commandLine.replace( "@LOG@FILE@", KProcess::quote( m_tempFile->name() ) ); + _commandLine.replace( "@LOG@FILE@", TDEProcess::quote( m_tempFile->name() ) ); // Update the list of log messages if ( !msg.isEmpty() ) { @@ -298,19 +298,19 @@ void CVSDialog::slotExecuteCommand( ) } } - // Set the KProcess' command line. + // Set the TDEProcess' command line. *p << _commandLine; - connect( p, TQT_SIGNAL( receivedStdout( KProcess*, char*, int ) ), - this, TQT_SLOT ( slotProcessStdout( KProcess*, char*, int ) ) ); - connect( p, TQT_SIGNAL( receivedStderr( KProcess*, char*, int ) ), - this, TQT_SLOT ( slotProcessStderr( KProcess*, char*, int ) ) ); - connect( p, TQT_SIGNAL( processExited( KProcess* ) ), - this, TQT_SLOT( slotProcessExited( KProcess* ) ) ); + connect( p, TQT_SIGNAL( receivedStdout( TDEProcess*, char*, int ) ), + this, TQT_SLOT ( slotProcessStdout( TDEProcess*, char*, int ) ) ); + connect( p, TQT_SIGNAL( receivedStderr( TDEProcess*, char*, int ) ), + this, TQT_SLOT ( slotProcessStderr( TDEProcess*, char*, int ) ) ); + connect( p, TQT_SIGNAL( processExited( TDEProcess* ) ), + this, TQT_SLOT( slotProcessExited( TDEProcess* ) ) ); output->append( i18n( "[ Starting command ]" ) ); - if ( p->start( KProcess::NotifyOnExit, KProcess::Communication( KProcess::AllOutput ) ) ) { + if ( p->start( TDEProcess::NotifyOnExit, TDEProcess::Communication( TDEProcess::AllOutput ) ) ) { // Disable the main button (and the log edit if in commit mode) to // indicate activity. mainBtn->setEnabled( false ); @@ -323,7 +323,7 @@ void CVSDialog::slotExecuteCommand( ) } } -void CVSDialog::slotProcessStdout( KProcess*, char * buffer, int len ) +void CVSDialog::slotProcessStdout( TDEProcess*, char * buffer, int len ) { output->append( TQString::fromLocal8Bit( buffer, len ) ); // Set the cursor's position at the end of the output. @@ -334,7 +334,7 @@ void CVSDialog::slotProcessStdout( KProcess*, char * buffer, int len ) _statusOutput += TQString::fromLocal8Bit( buffer, len ); } -void CVSDialog::slotProcessStderr( KProcess*, char * buffer, int len ) +void CVSDialog::slotProcessStderr( TDEProcess*, char * buffer, int len ) { // If an error occurs while executing the command display stderr in // another color. @@ -345,7 +345,7 @@ void CVSDialog::slotProcessStderr( KProcess*, char * buffer, int len ) output->setCursorPosition( output->lines( ), 0 ); } -void CVSDialog::slotProcessExited( KProcess * p ) +void CVSDialog::slotProcessExited( TDEProcess * p ) { if ( p->exitStatus( ) ) output->append( i18n( "[ Exited with status %1 ]" ).arg( p->exitStatus( ) ) ); diff --git a/kbabel/catalogmanager/libcvs/cvsdialog.h b/kbabel/catalogmanager/libcvs/cvsdialog.h index de609efd..b62cccc9 100644 --- a/kbabel/catalogmanager/libcvs/cvsdialog.h +++ b/kbabel/catalogmanager/libcvs/cvsdialog.h @@ -48,7 +48,7 @@ class TQString; class TQStringList; class TQTextEdit; // Forwarding KDE classes -class KProcess; +class TDEProcess; class KTempFile; class KComboBox; @@ -113,11 +113,11 @@ class CVSDialog : public KDialog /** Slot for executing the CVS Command. */ void slotExecuteCommand( ); /** Slot for processing the stdout of the CVS Command. */ - void slotProcessStdout( KProcess*, char * buffer, int len ); + void slotProcessStdout( TDEProcess*, char * buffer, int len ); /** Slot for processing the stderr of the CVS Command. */ - void slotProcessStderr( KProcess*, char * buffer, int len ); + void slotProcessStderr( TDEProcess*, char * buffer, int len ); /** Slot for post-processing after the CVS command is fninished. */ - void slotProcessExited( KProcess * p ); + void slotProcessExited( TDEProcess * p ); /// Slot for combox having been activated void slotComboActivated( int ); @@ -132,7 +132,7 @@ class CVSDialog : public KDialog TQTextEdit * output; TQCheckBox * autoAddBox; - KProcess * p; + TDEProcess * p; TQString _commandLine; TQString _addCommand; diff --git a/kbabel/catalogmanager/libcvs/cvshandler.cpp b/kbabel/catalogmanager/libcvs/cvshandler.cpp index 1cd78410..d2b6c4eb 100644 --- a/kbabel/catalogmanager/libcvs/cvshandler.cpp +++ b/kbabel/catalogmanager/libcvs/cvshandler.cpp @@ -197,8 +197,8 @@ void CVSHandler::execCVSCommand( TQWidget* parent, CVS::Command cmd, const TQStr return; } - // ### FIXME: instead of making a TQString, use KProcess directly, so that it cares about quoting. - // ### FIXME: use KProcess::setWorkingDirectory instead of using "cd" (therefore allowing to use KProcess without a shell.) + // ### FIXME: instead of making a TQString, use TDEProcess directly, so that it cares about quoting. + // ### FIXME: use TDEProcess::setWorkingDirectory instead of using "cd" (therefore allowing to use TDEProcess without a shell.) // it's a dir TQString command( "cd " + filename + " && cvs " ); switch ( cmd ) { @@ -230,8 +230,8 @@ void CVSHandler::execCVSCommand( TQWidget* parent, CVS::Command cmd, const TQStr return; } - // ### FIXME: instead of making a TQString, use KProcess directly, so that it cares about quoting. - // ### FIXME: use KProcess::setWorkingDirectory instead of using "cd" (therefore allowing to use KProcess without a shell.) + // ### FIXME: instead of making a TQString, use TDEProcess directly, so that it cares about quoting. + // ### FIXME: use TDEProcess::setWorkingDirectory instead of using "cd" (therefore allowing to use TDEProcess without a shell.) TQString command("cd " + (templates ? _potBaseDir : _poBaseDir) + " && cvs "); switch ( cmd ) { case CVS::Update: diff --git a/kbabel/catalogmanager/libsvn/svndialog.cpp b/kbabel/catalogmanager/libsvn/svndialog.cpp index dca25e69..c5f8c24a 100644 --- a/kbabel/catalogmanager/libsvn/svndialog.cpp +++ b/kbabel/catalogmanager/libsvn/svndialog.cpp @@ -213,10 +213,10 @@ void SVNDialog::slotExecuteCommand( ) // Nothing to do here. if ( _commandLine.isEmpty( ) ) return; - kdDebug() << "Preparing KProcess" << endl; + kdDebug() << "Preparing TDEProcess" << endl; // Create a new shell process - p = new KProcess; + p = new TDEProcess; p->setUseShell( true, "/bin/sh" ); if ( _cmd == SVN::Commit ) { @@ -261,7 +261,7 @@ void SVNDialog::slotExecuteCommand( ) } // Change the command line to have the real name of the temporary file - _commandLine.replace( "@LOG@FILE@", KProcess::quote( m_tempFile->name() ) ); + _commandLine.replace( "@LOG@FILE@", TDEProcess::quote( m_tempFile->name() ) ); // Update the list of log messages if ( !msg.isEmpty() ) { @@ -277,19 +277,19 @@ void SVNDialog::slotExecuteCommand( ) } } - // Set the KProcess' command line. + // Set the TDEProcess' command line. *p << _commandLine; - connect( p, TQT_SIGNAL( receivedStdout( KProcess*, char*, int ) ), - this, TQT_SLOT ( slotProcessStdout( KProcess*, char*, int ) ) ); - connect( p, TQT_SIGNAL( receivedStderr( KProcess*, char*, int ) ), - this, TQT_SLOT ( slotProcessStderr( KProcess*, char*, int ) ) ); - connect( p, TQT_SIGNAL( processExited( KProcess* ) ), - this, TQT_SLOT( slotProcessExited( KProcess* ) ) ); + connect( p, TQT_SIGNAL( receivedStdout( TDEProcess*, char*, int ) ), + this, TQT_SLOT ( slotProcessStdout( TDEProcess*, char*, int ) ) ); + connect( p, TQT_SIGNAL( receivedStderr( TDEProcess*, char*, int ) ), + this, TQT_SLOT ( slotProcessStderr( TDEProcess*, char*, int ) ) ); + connect( p, TQT_SIGNAL( processExited( TDEProcess* ) ), + this, TQT_SLOT( slotProcessExited( TDEProcess* ) ) ); output->append( i18n( "[ Starting command ]" ) ); - if ( p->start( KProcess::NotifyOnExit, KProcess::Communication( KProcess::AllOutput ) ) ) { + if ( p->start( TDEProcess::NotifyOnExit, TDEProcess::Communication( TDEProcess::AllOutput ) ) ) { // Disable the main button (and the log edit if in commit mode) to // indicate activity. mainBtn->setEnabled( false ); @@ -302,7 +302,7 @@ void SVNDialog::slotExecuteCommand( ) } } -void SVNDialog::slotProcessStdout( KProcess*, char * buffer, int len ) +void SVNDialog::slotProcessStdout( TDEProcess*, char * buffer, int len ) { output->append( TQString::fromLocal8Bit( buffer, len ) ); // Set the cursor's position at the end of the output. @@ -313,7 +313,7 @@ void SVNDialog::slotProcessStdout( KProcess*, char * buffer, int len ) _statusOutput += TQString::fromLocal8Bit( buffer, len ); } -void SVNDialog::slotProcessStderr( KProcess*, char * buffer, int len ) +void SVNDialog::slotProcessStderr( TDEProcess*, char * buffer, int len ) { // If an error occurs while executing the command display stderr in // another color. @@ -324,7 +324,7 @@ void SVNDialog::slotProcessStderr( KProcess*, char * buffer, int len ) output->setCursorPosition( output->lines( ), 0 ); } -void SVNDialog::slotProcessExited( KProcess * p ) +void SVNDialog::slotProcessExited( TDEProcess * p ) { if ( p->exitStatus( ) ) output->append( i18n( "[ Exited with status %1 ]" ).arg( p->exitStatus( ) ) ); diff --git a/kbabel/catalogmanager/libsvn/svndialog.h b/kbabel/catalogmanager/libsvn/svndialog.h index 4c89a004..4190a172 100644 --- a/kbabel/catalogmanager/libsvn/svndialog.h +++ b/kbabel/catalogmanager/libsvn/svndialog.h @@ -48,7 +48,7 @@ class TQString; class TQStringList; class TQTextEdit; // Forwarding KDE classes -class KProcess; +class TDEProcess; class KTempFile; class KSharedConfig; @@ -112,11 +112,11 @@ class SVNDialog : public KDialog /** Slot for executing the SVN Command. */ void slotExecuteCommand( ); /** Slot for processing the stdout of the SVN Command. */ - void slotProcessStdout( KProcess*, char * buffer, int len ); + void slotProcessStdout( TDEProcess*, char * buffer, int len ); /** Slot for processing the stderr of the SVN Command. */ - void slotProcessStderr( KProcess*, char * buffer, int len ); + void slotProcessStderr( TDEProcess*, char * buffer, int len ); /** Slot for post-processing after the SVN command is fninished. */ - void slotProcessExited( KProcess * p ); + void slotProcessExited( TDEProcess * p ); /// Slot for combox having been activated void slotComboActivated( int ); @@ -131,7 +131,7 @@ class SVNDialog : public KDialog TQTextEdit * output; TQCheckBox * autoAddBox; - KProcess * p; + TDEProcess * p; TQString _commandLine; TQString _addCommand; diff --git a/kbabel/catalogmanager/libsvn/svnhandler.cpp b/kbabel/catalogmanager/libsvn/svnhandler.cpp index bff097fd..a643f18a 100644 --- a/kbabel/catalogmanager/libsvn/svnhandler.cpp +++ b/kbabel/catalogmanager/libsvn/svnhandler.cpp @@ -132,12 +132,12 @@ SVNHandler::FileStatus SVNHandler::fstatus( const TQString& filename ) const if ( !entries.exists() ) return NOT_IN_SVN; - KProcess proc; + TDEProcess proc; SVNOutputCollector out( &proc ); proc << "svn" << "status" << "-v" << "--xml" << info.absFilePath(); - if( !proc.start( KProcess::Block, KProcess::Stdout ) ) + if( !proc.start( TDEProcess::Block, TDEProcess::Stdout ) ) return ERROR_IN_WC; TQDomDocument doc; @@ -290,8 +290,8 @@ void SVNHandler::execSVNCommand( TQWidget* parent, SVN::Command cmd, const TQStr return; } - // ### TODO: instead of making a TQString, use KProcess directly, so that it cares about quoting. - // ### TODO: use KProcess::setWorkingDirectory instead of using "cd" (therefore allowing to use KProcess without a shell.) + // ### TODO: instead of making a TQString, use TDEProcess directly, so that it cares about quoting. + // ### TODO: use TDEProcess::setWorkingDirectory instead of using "cd" (therefore allowing to use TDEProcess without a shell.) TQString command("cd " + (templates ? _potBaseDir : _poBaseDir) + " && svn "); switch ( cmd ) { case SVN::Update: @@ -503,23 +503,23 @@ bool SVNHandler::isConsideredModified( const FileStatus status ) const return status == LOCALLY_MODIFIED || status == NOT_IN_SVN; } -SVNOutputCollector::SVNOutputCollector( KProcess* p ) +SVNOutputCollector::SVNOutputCollector( TDEProcess* p ) : m_process(0) { setProcess( p ); } -void SVNOutputCollector::setProcess( KProcess* p ) +void SVNOutputCollector::setProcess( TDEProcess* p ) { if( m_process ) m_process->disconnect( this ); m_process = p; if( p ) { - connect( p, TQT_SIGNAL(receivedStdout(KProcess*, char*, int)), - this, TQT_SLOT(slotGatherStdout(KProcess*, char*, int)) ); - connect( p, TQT_SIGNAL(receivedStderr(KProcess*, char*, int)), - this, TQT_SLOT(slotGatherStderr(KProcess*, char*, int)) ); + connect( p, TQT_SIGNAL(receivedStdout(TDEProcess*, char*, int)), + this, TQT_SLOT(slotGatherStdout(TDEProcess*, char*, int)) ); + connect( p, TQT_SIGNAL(receivedStderr(TDEProcess*, char*, int)), + this, TQT_SLOT(slotGatherStderr(TDEProcess*, char*, int)) ); } m_gatheredOutput.truncate( 0 ); @@ -527,13 +527,13 @@ void SVNOutputCollector::setProcess( KProcess* p ) m_stdoutOutput.truncate( 0 ); } -void SVNOutputCollector::slotGatherStderr( KProcess*, char* data, int len ) +void SVNOutputCollector::slotGatherStderr( TDEProcess*, char* data, int len ) { m_gatheredOutput.append( TQString::fromLocal8Bit( data, len ) ); m_stderrOutput.append( TQString::fromLocal8Bit( data, len ) ); } -void SVNOutputCollector::slotGatherStdout( KProcess*, char* data, int len ) +void SVNOutputCollector::slotGatherStdout( TDEProcess*, char* data, int len ) { m_gatheredOutput.append( TQString::fromLocal8Bit( data, len ) ); m_stdoutOutput.append( TQString::fromLocal8Bit( data, len ) ); diff --git a/kbabel/catalogmanager/libsvn/svnhandler.h b/kbabel/catalogmanager/libsvn/svnhandler.h index 22a1f090..4f2cda5c 100644 --- a/kbabel/catalogmanager/libsvn/svnhandler.h +++ b/kbabel/catalogmanager/libsvn/svnhandler.h @@ -119,22 +119,22 @@ class SVNOutputCollector: public TQObject public: - SVNOutputCollector( KProcess* ); - void setProcess( KProcess* ); + SVNOutputCollector( TDEProcess* ); + void setProcess( TDEProcess* ); const TQString& getOutput() const { return m_gatheredOutput; } const TQString& getStderr() const { return m_stderrOutput; } const TQString& getStdout() const { return m_stdoutOutput; } private slots: - void slotGatherStderr( KProcess*, char*, int ); - void slotGatherStdout( KProcess*, char*, int ); + void slotGatherStderr( TDEProcess*, char*, int ); + void slotGatherStdout( TDEProcess*, char*, int ); private: TQString m_gatheredOutput; TQString m_stderrOutput; TQString m_stdoutOutput; - KProcess* m_process; + TDEProcess* m_process; }; #endif // SVNHANDLER_H diff --git a/kbabel/catalogmanager/markpatterndialog.cpp b/kbabel/catalogmanager/markpatterndialog.cpp index c53b008f..7d134e31 100644 --- a/kbabel/catalogmanager/markpatterndialog.cpp +++ b/kbabel/catalogmanager/markpatterndialog.cpp @@ -140,7 +140,7 @@ void MarkPatternDialog::slotRegexpButtonClicked( ) void MarkPatternDialog::restoreSettings( ) { - KConfig * config = KGlobal::config( ); + KConfig * config = TDEGlobal::config( ); config->setGroup("MarkPatternDialog"); patternList = config->readListEntry("Patterns"); @@ -160,7 +160,7 @@ void MarkPatternDialog::restoreSettings( ) void MarkPatternDialog::saveSettings( ) { - KConfig * config = KGlobal::config( ); + KConfig * config = TDEGlobal::config( ); config->setGroup("MarkPatternDialog"); config->writeEntry("Patterns", patternList); diff --git a/kbabel/catalogmanager/multiroughtransdlg.cpp b/kbabel/catalogmanager/multiroughtransdlg.cpp index 19b257d9..a8e5d4d9 100644 --- a/kbabel/catalogmanager/multiroughtransdlg.cpp +++ b/kbabel/catalogmanager/multiroughtransdlg.cpp @@ -125,7 +125,7 @@ void MultiRoughTransDlg::showAllStatistics() if( tt == 0 ) tt = 1; int nothing=tt-ptc-etc; - KLocale *locale = KGlobal::locale(); + KLocale *locale = TDEGlobal::locale(); TQString statMsg = i18n("Result of the translation:\n" "Edited entries: %1\n" "Exact translations: %2 (%3%)\n" diff --git a/kbabel/common/catalog.cpp b/kbabel/common/catalog.cpp index 58df521f..d2f2f8ac 100644 --- a/kbabel/common/catalog.cpp +++ b/kbabel/common/catalog.cpp @@ -1809,7 +1809,7 @@ TQString Catalog::dateTime() const { case Qt::LocalDate: { - dateTimeString = KGlobal::locale()->formatDateTime( dt ); + dateTimeString = TDEGlobal::locale()->formatDateTime( dt ); break; } case Qt::ISODate: diff --git a/kbabel/common/catalogsettings.cpp b/kbabel/common/catalogsettings.cpp index 24d469ec..d16bc9cc 100644 --- a/kbabel/common/catalogsettings.cpp +++ b/kbabel/common/catalogsettings.cpp @@ -90,7 +90,7 @@ TQString KBabel::GNUPluralForms(const TQString& lang) infile.close(); - KProcess msginit; + TDEProcess msginit; msginit << "msginit"; msginit @@ -103,7 +103,7 @@ TQString KBabel::GNUPluralForms(const TQString& lang) << "--no-translator" << "--no-wrap" ; - msginit.start( KProcess::Block ); + msginit.start( TDEProcess::Block ); TQString res(""); @@ -200,7 +200,7 @@ TQString Defaults::Identity::mailingList() TQString Defaults::Identity::languageCode() { // first try to get the language from KDE settings - KLocale *locale = KGlobal::locale(); + KLocale *locale = TDEGlobal::locale(); TQString lang; if(locale) { diff --git a/kbabel/common/msgfmt.cpp b/kbabel/common/msgfmt.cpp index 11e6969f..3a191a59 100644 --- a/kbabel/common/msgfmt.cpp +++ b/kbabel/common/msgfmt.cpp @@ -56,12 +56,12 @@ Msgfmt::Status Msgfmt::checkSyntax(TQString file,TQString& output, bool gnu) Status stat=Ok; // this method does not return the right retrun values at the moment :-( - KProcess proc; + TDEProcess proc; - connect(&proc,TQT_SIGNAL(receivedStdout(KProcess*, char*, int)), - this,TQT_SLOT(addToOutput(KProcess*,char *, int ))); - connect(&proc,TQT_SIGNAL(receivedStderr(KProcess *, char *, int)), - this,TQT_SLOT(addToOutput(KProcess*,char *, int))); + connect(&proc,TQT_SIGNAL(receivedStdout(TDEProcess*, char*, int)), + this,TQT_SLOT(addToOutput(TDEProcess*,char *, int ))); + connect(&proc,TQT_SIGNAL(receivedStderr(TDEProcess *, char *, int)), + this,TQT_SLOT(addToOutput(TDEProcess*,char *, int))); // remove last output _output=""; @@ -74,7 +74,7 @@ Msgfmt::Status Msgfmt::checkSyntax(TQString file,TQString& output, bool gnu) proc << "-vc"; } - if(!proc.start(KProcess::Block,KProcess::Stderr)) + if(!proc.start(TDEProcess::Block,TDEProcess::Stderr)) { stat=NoExecutable; } @@ -97,21 +97,21 @@ Msgfmt::Status Msgfmt::checkSyntaxInDir(TQString dir,TQString regexp,TQString& o Status stat=Ok; // this method does not return the right return values at the moment :-( - KProcess proc; + TDEProcess proc; proc.setUseShell(true); - connect(&proc,TQT_SIGNAL(receivedStdout(KProcess*, char*, int)), - this,TQT_SLOT(addToOutput(KProcess*,char *, int ))); - connect(&proc,TQT_SIGNAL(receivedStderr(KProcess *, char *, int)), - this,TQT_SLOT(addToOutput(KProcess*,char *, int))); + connect(&proc,TQT_SIGNAL(receivedStdout(TDEProcess*, char*, int)), + this,TQT_SLOT(addToOutput(TDEProcess*,char *, int ))); + connect(&proc,TQT_SIGNAL(receivedStderr(TDEProcess *, char *, int)), + this,TQT_SLOT(addToOutput(TDEProcess*,char *, int))); // remove last output _output=""; proc << "IFS='\n'; msgfmt --statistics -o /dev/null " - "$(find" << KProcess::quote(dir) << "-name" << KProcess::quote(regexp) << ")"; + "$(find" << TDEProcess::quote(dir) << "-name" << TDEProcess::quote(regexp) << ")"; - if(!proc.start(KProcess::Block,KProcess::Stderr)) + if(!proc.start(TDEProcess::Block,TDEProcess::Stderr)) { stat=NoExecutable; } @@ -131,7 +131,7 @@ Msgfmt::Status Msgfmt::checkSyntaxInDir(TQString dir,TQString regexp,TQString& o -void Msgfmt::addToOutput(KProcess*,char *buffer, int buflen) +void Msgfmt::addToOutput(TDEProcess*,char *buffer, int buflen) { TQString newString = TQString::fromLocal8Bit(buffer, buflen); diff --git a/kbabel/common/msgfmt.h b/kbabel/common/msgfmt.h index 35a621ba..b5317751 100644 --- a/kbabel/common/msgfmt.h +++ b/kbabel/common/msgfmt.h @@ -36,7 +36,7 @@ #include #include -class KProcess; +class TDEProcess; class TQString; namespace KBabel @@ -54,7 +54,7 @@ public: Status checkSyntaxInDir(TQString dir,TQString regexp,TQString& output); private slots: - void addToOutput(KProcess*,char *buffer, int buflen); + void addToOutput(TDEProcess*,char *buffer, int buflen); private: static TQString tempSaveName(); diff --git a/kbabel/common/projectsettings.cpp b/kbabel/common/projectsettings.cpp index 1d3efd77..774d1ede 100644 --- a/kbabel/common/projectsettings.cpp +++ b/kbabel/common/projectsettings.cpp @@ -46,7 +46,7 @@ TQString KBabel::Defaults::Spellcheck::ignoreURL() { TQString _ignoreURL; - KStandardDirs * dirs = KGlobal::dirs(); + KStandardDirs * dirs = TDEGlobal::dirs(); if(dirs) { _ignoreURL = dirs->saveLocation("appdata"); @@ -113,7 +113,7 @@ TQString KBabel::Defaults::CatalogManager::ignoreURL() { TQString _ignoreURL; - KStandardDirs * dirs = KGlobal::dirs(); + KStandardDirs * dirs = TDEGlobal::dirs(); if(dirs) { _ignoreURL = dirs->saveLocation("appdata"); diff --git a/kbabel/common/tagextractor.cpp b/kbabel/common/tagextractor.cpp index 4fae0e7b..18fd96f2 100644 --- a/kbabel/common/tagextractor.cpp +++ b/kbabel/common/tagextractor.cpp @@ -42,7 +42,7 @@ using namespace KBabel; TagExtractor::TagExtractor() : RegExpExtractor(TQStringList()) { - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); config->setGroup("Tags"); diff --git a/kbabel/commonui/finddialog.cpp b/kbabel/commonui/finddialog.cpp index 328f9f4a..e4d99b84 100644 --- a/kbabel/commonui/finddialog.cpp +++ b/kbabel/commonui/finddialog.cpp @@ -386,7 +386,7 @@ void FindDialog::setReplaceOpts(ReplaceOptions options) void FindDialog::readSettings() { - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); if(_replaceDlg) { KConfigGroupSaver cgs(config,"ReplaceDialog"); @@ -459,7 +459,7 @@ void FindDialog::readSettings() void FindDialog::saveSettings() { - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); if(_replaceDlg) { KConfigGroupSaver cgs(config,"ReplaceDialog"); diff --git a/kbabel/commonui/projectwizard.cpp b/kbabel/commonui/projectwizard.cpp index 31b4ab86..c2526a4f 100644 --- a/kbabel/commonui/projectwizard.cpp +++ b/kbabel/commonui/projectwizard.cpp @@ -54,7 +54,7 @@ ProjectWizard::ProjectWizard(TQWidget *parent,const char *name) // fill the known language codes KConfig all_languages("all_languages", true, false, "locale"); - TQStringList lang_codes = KGlobal::locale()->allLanguagesTwoAlpha(); + TQStringList lang_codes = TDEGlobal::locale()->allLanguagesTwoAlpha(); for (TQStringList::iterator it = lang_codes.begin(); it != lang_codes.end(); ++it) { diff --git a/kbabel/commonui/roughtransdlg.cpp b/kbabel/commonui/roughtransdlg.cpp index ee35a22a..ccf3735f 100644 --- a/kbabel/commonui/roughtransdlg.cpp +++ b/kbabel/commonui/roughtransdlg.cpp @@ -160,7 +160,7 @@ RoughTransDlg::RoughTransDlg(KBabelDictBox *dict, Catalog *cat TQPtrList moduleList = dict->moduleInfos(); - KConfig *config = KGlobal::config(); + KConfig *config = TDEGlobal::config(); KConfigGroupSaver gs(config,"RoughTranslation"); TQStringList selectedList=config->readListEntry("Selected"); if(selectedList.isEmpty()) @@ -212,7 +212,7 @@ RoughTransDlg::RoughTransDlg(KBabelDictBox *dict, Catalog *cat RoughTransDlg::~RoughTransDlg() { - KConfig *config=KGlobal::config(); + KConfig *config=TDEGlobal::config(); KConfigGroupSaver gs(config,"RoughTranslation"); config->writeEntry("Selected",dictChooser->selectedDicts()); @@ -667,7 +667,7 @@ void RoughTransDlg::translate() void RoughTransDlg::showStatistics() { int nothing=totalTried-partTransCounter-exactTransCounter; - KLocale *locale = KGlobal::locale(); + KLocale *locale = TDEGlobal::locale(); TQString statMsg = i18n("Result of the translation:\n" "Edited entries: %1\n" "Exact translations: %2 (%3%)\n" diff --git a/kbabel/commonui/toolaction.cpp b/kbabel/commonui/toolaction.cpp index 37f9f671..48650231 100644 --- a/kbabel/commonui/toolaction.cpp +++ b/kbabel/commonui/toolaction.cpp @@ -92,7 +92,7 @@ TQValueList ToolAction::validationTools() { TQValueList result; - TQValueList tools = KDataToolInfo::query("CatalogItem", "application/x-kbabel-catalogitem", KGlobal::instance()); + TQValueList tools = KDataToolInfo::query("CatalogItem", "application/x-kbabel-catalogitem", TDEGlobal::instance()); for( TQValueList::ConstIterator entry = tools.begin(); entry != tools.end(); ++entry ) { diff --git a/kbabel/kbabel/headereditor.cpp b/kbabel/kbabel/headereditor.cpp index 62275cdd..cc692bbd 100644 --- a/kbabel/kbabel/headereditor.cpp +++ b/kbabel/kbabel/headereditor.cpp @@ -84,7 +84,7 @@ HeaderEditor::~HeaderEditor() void HeaderEditor::saveSettings() { - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); KConfigGroupSaver saver(config, "HeaderEditor" ); @@ -93,7 +93,7 @@ void HeaderEditor::saveSettings() void HeaderEditor::restoreSettings() { - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); KConfigGroupSaver saver(config, "HeaderEditor" ); diff --git a/kbabel/kbabel/kbabel.cpp b/kbabel/kbabel/kbabel.cpp index 91e591fb..0abd5eca 100644 --- a/kbabel/kbabel/kbabel.cpp +++ b/kbabel/kbabel/kbabel.cpp @@ -785,7 +785,7 @@ void KBabelMW::setupDynamicActions() // query available tools TQValueList allTools = KDataToolInfo::query - ("CatalogItem", "application/x-kbabel-catalogitem", KGlobal::instance()); + ("CatalogItem", "application/x-kbabel-catalogitem", TDEGlobal::instance()); // skip read-only tools for single items TQValueList modifyTools; @@ -819,7 +819,7 @@ void KBabelMW::setupDynamicActions() // query available tools for whole catalog allTools = KDataToolInfo::query - ("Catalog", "application/x-kbabel-catalog", KGlobal::instance()); + ("Catalog", "application/x-kbabel-catalog", TDEGlobal::instance()); // skip read-only tools entry = allTools.begin(); @@ -1179,7 +1179,7 @@ void KBabelMW::optionsShowStatusbar(bool on) void KBabelMW::optionsEditToolbars() { - saveMainWindowSettings( KGlobal::config(), "View" ); + saveMainWindowSettings( TDEGlobal::config(), "View" ); KEditToolbar dlg(actionCollection()); connect(&dlg, TQT_SIGNAL(newToolbarConfig()), TQT_TQOBJECT(this), TQT_SLOT(newToolbarConfig())); dlg.exec(); @@ -1188,7 +1188,7 @@ void KBabelMW::optionsEditToolbars() void KBabelMW::newToolbarConfig() { createGUI(0); - applyMainWindowSettings( KGlobal::config(), "View" ); + applyMainWindowSettings( TDEGlobal::config(), "View" ); } void KBabelMW::optionsPreferences() diff --git a/kbabel/kbabel/kbabel.kcfg b/kbabel/kbabel/kbabel.kcfg index 0da6949c..eba3f4a6 100644 --- a/kbabel/kbabel/kbabel.kcfg +++ b/kbabel/kbabel/kbabel.kcfg @@ -109,7 +109,7 @@ - KGlobalSettings::generalFont() + TDEGlobalSettings::generalFont()