From 6adb71382c3d5277c3dcbc4ec24c5ff36b4c07ef Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 24 Jan 2013 13:45:52 -0600 Subject: Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4 --- kpdf/part.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kpdf/part.cpp') diff --git a/kpdf/part.cpp b/kpdf/part.cpp index 9b798526..43373047 100644 --- a/kpdf/part.cpp +++ b/kpdf/part.cpp @@ -127,7 +127,7 @@ Part::Part(TQWidget *parentWidget, const char *widgetName, connect(this, TQT_SIGNAL(canceled(const TQString &)), this, TQT_SLOT(emitWindowCaption())); // load catalog for translation - KGlobal::locale()->insertCatalogue("kpdf"); + TDEGlobal::locale()->insertCatalogue("kpdf"); // create browser extension (for printing when embedded into browser) m_bExtension = new BrowserExtension(this); @@ -428,11 +428,11 @@ bool Part::openFile() tf.close(); m_temporaryLocalFile = tf.name(); - KProcess *p = new KProcess; + TDEProcess *p = new TDEProcess; *p << app; *p << m_file << m_temporaryLocalFile; m_pageView->showText(i18n("Converting from ps to pdf..."), 0); - connect(p, TQT_SIGNAL(processExited(KProcess *)), this, TQT_SLOT(psTransformEnded())); + connect(p, TQT_SIGNAL(processExited(TDEProcess *)), this, TQT_SLOT(psTransformEnded())); p -> start(); return true; } -- cgit v1.2.1