From 79b21d47bce1ee428affc97534cd8b257232a871 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 24 Jan 2013 13:43:14 -0600 Subject: Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4 --- khelpcenter/glossary.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'khelpcenter/glossary.cpp') diff --git a/khelpcenter/glossary.cpp b/khelpcenter/glossary.cpp index b0ba47352..8a406230a 100644 --- a/khelpcenter/glossary.cpp +++ b/khelpcenter/glossary.cpp @@ -146,9 +146,9 @@ void Glossary::rebuildGlossaryCache() Q_ASSERT( mainWindow ); mainWindow->statusBar()->message( i18n( "Rebuilding cache..." ) ); - KProcess *meinproc = new KProcess; - connect( meinproc, TQT_SIGNAL( processExited( KProcess * ) ), - this, TQT_SLOT( meinprocExited( KProcess * ) ) ); + TDEProcess *meinproc = new TDEProcess; + connect( meinproc, TQT_SIGNAL( processExited( TDEProcess * ) ), + this, TQT_SLOT( meinprocExited( TDEProcess * ) ) ); *meinproc << locate( "exe", TQString::fromLatin1( "meinproc" ) ); *meinproc << TQString::fromLatin1( "--output" ) << m_cacheFile; @@ -156,10 +156,10 @@ void Glossary::rebuildGlossaryCache() << locate( "data", TQString::fromLatin1( "khelpcenter/glossary.xslt" ) ); *meinproc << m_sourceFile; - meinproc->start( KProcess::NotifyOnExit ); + meinproc->start( TDEProcess::NotifyOnExit ); } -void Glossary::meinprocExited( KProcess *meinproc ) +void Glossary::meinprocExited( TDEProcess *meinproc ) { delete meinproc; -- cgit v1.2.1