From f7307c95135a3c1589799c6877d314a02a2260c1 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 20 Jan 2013 00:25:07 -0600 Subject: Rename KApplication to TDEApplication to avoid conflicts with KDE4 --- kommander/widgets/execbutton.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kommander/widgets/execbutton.cpp') diff --git a/kommander/widgets/execbutton.cpp b/kommander/widgets/execbutton.cpp index 63bb503b..4e88eb22 100644 --- a/kommander/widgets/execbutton.cpp +++ b/kommander/widgets/execbutton.cpp @@ -117,14 +117,14 @@ void ExecButton::startProcess() if (m_blockGUI != None) setEnabled(false); if (m_blockGUI == GUI) - KApplication::setOverrideCursor(TQCursor(TQt::WaitCursor)); + TDEApplication::setOverrideCursor(TQCursor(TQt::WaitCursor)); MyProcess* process = new MyProcess(this); process->setBlocking(m_blockGUI == GUI); connect(process, TQT_SIGNAL(processExited(MyProcess*)), TQT_SLOT(processExited(MyProcess*))); m_output = process->run(at); if (m_blockGUI == GUI) { - KApplication::restoreOverrideCursor(); + TDEApplication::restoreOverrideCursor(); if (writeStdout()) cout << m_output << flush; } -- cgit v1.2.1