diff options
Diffstat (limited to 'konqueror/shellcmdplugin')
-rw-r--r-- | konqueror/shellcmdplugin/kshellcmddialog.cpp | 6 | ||||
-rw-r--r-- | konqueror/shellcmdplugin/kshellcmdexecutor.cpp | 4 | ||||
-rw-r--r-- | konqueror/shellcmdplugin/kshellcmdplugin.cpp | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/konqueror/shellcmdplugin/kshellcmddialog.cpp b/konqueror/shellcmdplugin/kshellcmddialog.cpp index b4ea0cb5d..80c854fcf 100644 --- a/konqueror/shellcmdplugin/kshellcmddialog.cpp +++ b/konqueror/shellcmdplugin/kshellcmddialog.cpp @@ -54,9 +54,9 @@ KShellCommandDialog::KShellCommandDialog(const TQString& title, const TQString& m_shell->setFocus(); - connect(cancelButton, TQT_SIGNAL(clicked()), m_shell, TQT_SLOT(slotFinished())); - connect(m_shell, TQT_SIGNAL(finished()), this, TQT_SLOT(disableStopButton())); - connect(closeButton,TQT_SIGNAL(clicked()), this, TQT_SLOT(slotClose())); + connect(cancelButton, TQ_SIGNAL(clicked()), m_shell, TQ_SLOT(slotFinished())); + connect(m_shell, TQ_SIGNAL(finished()), this, TQ_SLOT(disableStopButton())); + connect(closeButton,TQ_SIGNAL(clicked()), this, TQ_SLOT(slotClose())); } KShellCommandDialog::~KShellCommandDialog() diff --git a/konqueror/shellcmdplugin/kshellcmdexecutor.cpp b/konqueror/shellcmdplugin/kshellcmdexecutor.cpp index 228db9a36..d4d6f45f9 100644 --- a/konqueror/shellcmdplugin/kshellcmdexecutor.cpp +++ b/konqueror/shellcmdplugin/kshellcmdexecutor.cpp @@ -87,8 +87,8 @@ int KShellCommandExecutor::exec() m_readNotifier=new TQSocketNotifier(m_shellProcess->fd(),TQSocketNotifier::Read, this); m_writeNotifier=new TQSocketNotifier(m_shellProcess->fd(),TQSocketNotifier::Write, this); m_writeNotifier->setEnabled(false); - connect (m_readNotifier, TQT_SIGNAL(activated(int)), this,TQT_SLOT(readDataFromShell())); - connect (m_writeNotifier, TQT_SIGNAL(activated(int)), this,TQT_SLOT(writeDataToShell())); + connect (m_readNotifier, TQ_SIGNAL(activated(int)), this,TQ_SLOT(readDataFromShell())); + connect (m_writeNotifier, TQ_SIGNAL(activated(int)), this,TQ_SLOT(writeDataToShell())); return 1; } diff --git a/konqueror/shellcmdplugin/kshellcmdplugin.cpp b/konqueror/shellcmdplugin/kshellcmdplugin.cpp index 407d6f297..6245c2bd9 100644 --- a/konqueror/shellcmdplugin/kshellcmdplugin.cpp +++ b/konqueror/shellcmdplugin/kshellcmdplugin.cpp @@ -20,7 +20,7 @@ #include <kinputdialog.h> #include <tdemessagebox.h> #include <konq_dirpart.h> -#include <kprocess.h> +#include <tdeprocess.h> #include <tdeapplication.h> #include "kshellcmddialog.h" #include <kgenericfactory.h> @@ -30,11 +30,11 @@ KShellCmdPlugin::KShellCmdPlugin( TQObject* parent, const char* name, const TQStringList & ) : KParts::Plugin( parent, name ) { - if (!kapp->authorize("shell_access")) + if (!tdeApp->authorize("shell_access")) return; new TDEAction( i18n( "&Execute Shell Command..." ), "system-run", CTRL+Key_E, this, - TQT_SLOT( slotExecuteShellCommand() ), actionCollection(), "executeshellcommand" ); + TQ_SLOT( slotExecuteShellCommand() ), actionCollection(), "executeshellcommand" ); } void KShellCmdPlugin::slotExecuteShellCommand() |