summaryrefslogtreecommitdiffstats
path: root/src/libgui/likeback.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-24 13:26:15 -0600
committerTimothy Pearson <[email protected]>2013-01-24 13:26:15 -0600
commitbd55e01bc4764c5daa84bf46db6978d43898d619 (patch)
treeefc4b389d1eaffa183eb963c9e0aea1440c934c8 /src/libgui/likeback.cpp
parente39f93c92e88ec461668231778cbba570c82250b (diff)
downloadpiklab-bd55e01bc4764c5daa84bf46db6978d43898d619.tar.gz
piklab-bd55e01bc4764c5daa84bf46db6978d43898d619.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/libgui/likeback.cpp')
-rw-r--r--src/libgui/likeback.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libgui/likeback.cpp b/src/libgui/likeback.cpp
index 6740322..d5af677 100644
--- a/src/libgui/likeback.cpp
+++ b/src/libgui/likeback.cpp
@@ -451,9 +451,9 @@ void LikeBack::init(bool isDevelopmentVersion, Button buttons)
{
if (m_process)
return;
- m_process = new KProcess();
+ m_process = new TDEProcess();
*m_process << TQString::fromLatin1("kcmshell") << TQString::fromLatin1("kcm_useraccount");
- connect( m_process, TQT_SIGNAL(processExited(KProcess*)), TQT_SLOT(endFetchingEmailFrom()) );
+ connect( m_process, TQT_SIGNAL(processExited(TDEProcess*)), TQT_SLOT(endFetchingEmailFrom()) );
if (!m_process->start()) {
kdDebug() << "Couldn't start kcmshell.." << endl;
delete m_process;
@@ -625,7 +625,7 @@ void LikeBackDialog::send()
"protocol=" + KURL::encode_string("1.0") + "&" +
"type=" + KURL::encode_string(type) + "&" +
"version=" + KURL::encode_string(LikeBack::about()->version()) + "&" +
- "locale=" + KURL::encode_string(KGlobal::locale()->language()) + "&" +
+ "locale=" + KURL::encode_string(TDEGlobal::locale()->language()) + "&" +
"window=" + KURL::encode_string(m_windowName) + "&" +
"context=" + KURL::encode_string(m_context) + "&" +
"comment=" + KURL::encode_string(m_comment->text()) + "&" +