From c48e769eb275917717e2b55eb869f7e559293ac8 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 24 Jan 2013 13:48:31 -0600 Subject: Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4 --- kopete/plugins/latex/latexplugin.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kopete/plugins/latex') diff --git a/kopete/plugins/latex/latexplugin.cpp b/kopete/plugins/latex/latexplugin.cpp index 11537aba..d8169311 100644 --- a/kopete/plugins/latex/latexplugin.cpp +++ b/kopete/plugins/latex/latexplugin.cpp @@ -180,7 +180,7 @@ void LatexPlugin::slotMessageAboutToSend( Kopete::Message& msg) Q_UNUSED(msg) //disabled because to work correctly, we need to find what special has the gif we can send over MSN #if 0 - KConfig *config = KGlobal::config(); + KConfig *config = TDEGlobal::config(); config->setGroup("Latex Plugin"); if(!config->readBoolEntry("ParseOutgoing", false)) @@ -222,7 +222,7 @@ TQString LatexPlugin::handleLatex(const TQString &latexFormula) m_tempFiles.setAutoDelete(true); TQString fileName = tempFile->name(); - KProcess p; + TDEProcess p; TQString argumentRes = "-r %1x%2"; TQString argumentOut = "-o %1"; @@ -235,7 +235,7 @@ TQString LatexPlugin::handleLatex(const TQString &latexFormula) kdDebug() << k_funcinfo << " Rendering " << m_convScript << " " << argumentRes.arg(TQString::number(hDPI), TQString::number(vDPI)) << " " << argumentOut.arg(fileName) << endl; // FIXME our sucky sync filter API limitations :-) - p.start(KProcess::Block); + p.start(TDEProcess::Block); return fileName; } -- cgit v1.2.1