diff options
Diffstat (limited to 'kpackage/procbuf.cpp')
-rw-r--r-- | kpackage/procbuf.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kpackage/procbuf.cpp b/kpackage/procbuf.cpp index 568e651..da3bc98 100644 --- a/kpackage/procbuf.cpp +++ b/kpackage/procbuf.cpp @@ -32,11 +32,11 @@ #include <tqlabel.h> #include <kdebug.h> -Modal::Modal(TQString msg, TQWidget *parent, const char * name ) - : KDialog( parent, name, TRUE ) +Modal::Modal(TQString msg, TQWidget *tqparent, const char * name ) + : KDialog( tqparent, name, TRUE ) { TQLabel *line1 = new TQLabel(msg,this); - line1->setAlignment(AlignCenter); + line1->tqsetAlignment(AlignCenter); line1->setAutoResize(true); } @@ -136,13 +136,13 @@ int procbuf::start (TQString msg, bool errorDlg, << " exit=" << proc->exitStatus() << endl; if (timed) { kdDebug() << "timeout..................\n"; - KpMsg("Error",i18n("Timeout: %1").arg(timeMsg), TRUE); + KpMsg("Error",i18n("Timeout: %1").tqarg(timeMsg), TRUE); delete proc; proc = 0; return 0; } else { if (!proc->normalExit() || proc->exitStatus()) { if (errorDlg) { - KpMsg("Error",i18n("Kprocess error:%1").arg(buf), TRUE); + KpMsg("Error",i18n("Kprocess error:%1").tqarg(buf), TRUE); } delete proc; proc = 0; return 0; |