diff options
Diffstat (limited to 'kbabel/catalogmanager/libsvn/svndialog.h')
-rw-r--r-- | kbabel/catalogmanager/libsvn/svndialog.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kbabel/catalogmanager/libsvn/svndialog.h b/kbabel/catalogmanager/libsvn/svndialog.h index 4c89a004..4190a172 100644 --- a/kbabel/catalogmanager/libsvn/svndialog.h +++ b/kbabel/catalogmanager/libsvn/svndialog.h @@ -48,7 +48,7 @@ class TQString; class TQStringList; class TQTextEdit; // Forwarding KDE classes -class KProcess; +class TDEProcess; class KTempFile; class KSharedConfig; @@ -112,11 +112,11 @@ class SVNDialog : public KDialog /** Slot for executing the SVN Command. */ void slotExecuteCommand( ); /** Slot for processing the stdout of the SVN Command. */ - void slotProcessStdout( KProcess*, char * buffer, int len ); + void slotProcessStdout( TDEProcess*, char * buffer, int len ); /** Slot for processing the stderr of the SVN Command. */ - void slotProcessStderr( KProcess*, char * buffer, int len ); + void slotProcessStderr( TDEProcess*, char * buffer, int len ); /** Slot for post-processing after the SVN command is fninished. */ - void slotProcessExited( KProcess * p ); + void slotProcessExited( TDEProcess * p ); /// Slot for combox having been activated void slotComboActivated( int ); @@ -131,7 +131,7 @@ class SVNDialog : public KDialog TQTextEdit * output; TQCheckBox * autoAddBox; - KProcess * p; + TDEProcess * p; TQString _commandLine; TQString _addCommand; |