summaryrefslogtreecommitdiffstats
path: root/krename/undodialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:24:55 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:24:55 -0600
commit1e90902cbb6ce2f7db9a32e611f516c3c91484d5 (patch)
tree36426969dbc779c976e4eb7ce7117e6143947401 /krename/undodialog.cpp
parenta393325c0cdd43a9152b5f57a147c8b228794aa0 (diff)
downloadkrename-1e90902cbb6ce2f7db9a32e611f516c3c91484d5.tar.gz
krename-1e90902cbb6ce2f7db9a32e611f516c3c91484d5.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'krename/undodialog.cpp')
-rw-r--r--krename/undodialog.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/krename/undodialog.cpp b/krename/undodialog.cpp
index 487a154..993782e 100644
--- a/krename/undodialog.cpp
+++ b/krename/undodialog.cpp
@@ -77,24 +77,24 @@ void UndoDialog::start()
== KMessageBox::Cancel )
return;
- KProcess *proc = new KProcess;
+ TDEProcess *proc = new TDEProcess;
*proc << scriptname->url() << "--krename";
enableButton( KDialogBase::User1, false );
- if( !proc->start( KProcess::NotifyOnExit, KProcess::AllOutput ) ) {
+ if( !proc->start( TDEProcess::NotifyOnExit, TDEProcess::AllOutput ) ) {
KMessageBox::sorry( this, i18n("Unable to start the given undo script!") );
enableButton( KDialogBase::User1, true );
delete proc;
return;
}
proc->resume();
- connect( proc, TQT_SIGNAL( receivedStdout( KProcess*, char*, int) ), this, TQT_SLOT( receive( KProcess*, char*, int ) ) );
- connect( proc, TQT_SIGNAL( receivedStderr( KProcess*, char*, int) ), this, TQT_SLOT( receiveErr( KProcess*, char*, int ) ) );
- connect( proc, TQT_SIGNAL( processExited( KProcess* ) ), this, TQT_SLOT( finished( KProcess* ) ) );
+ connect( proc, TQT_SIGNAL( receivedStdout( TDEProcess*, char*, int) ), this, TQT_SLOT( receive( TDEProcess*, char*, int ) ) );
+ connect( proc, TQT_SIGNAL( receivedStderr( TDEProcess*, char*, int) ), this, TQT_SLOT( receiveErr( TDEProcess*, char*, int ) ) );
+ connect( proc, TQT_SIGNAL( processExited( TDEProcess* ) ), this, TQT_SLOT( finished( TDEProcess* ) ) );
}
-void UndoDialog::receive( KProcess*, char* buffer, int len )
+void UndoDialog::receive( TDEProcess*, char* buffer, int len )
{
TQString text;
for( int i = 0; i < len; i++ )
@@ -103,7 +103,7 @@ void UndoDialog::receive( KProcess*, char* buffer, int len )
browser->setText( browser->text() + text + "<br>");
}
-void UndoDialog::receiveErr( KProcess*, char* buffer, int len )
+void UndoDialog::receiveErr( TDEProcess*, char* buffer, int len )
{
TQString text = "<b>";
for( int i = 0; i < len; i++ )
@@ -112,7 +112,7 @@ void UndoDialog::receiveErr( KProcess*, char* buffer, int len )
browser->setText( browser->text() + text + "</b><br>");
}
-void UndoDialog::finished( KProcess* p )
+void UndoDialog::finished( TDEProcess* p )
{
delete p;
KMessageBox::information( this, i18n("Finished successfully") );