From 9be5c0a00d16c0abcc1926dd579359ff06d62658 Mon Sep 17 00:00:00 2001 From: David Faure Date: Mon, 12 Feb 2007 09:52:43 +0000 Subject: [PATCH] This compiles fine here... Allen, if it still breaks with your gcc (which version?), try QString::number(PipeTimeout) svn path=/trunk/KDE/kdepim/; revision=632775 --- templateparser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templateparser.cpp b/templateparser.cpp index fcf5cccab..63a20c59d 100644 --- a/templateparser.cpp +++ b/templateparser.cpp @@ -1036,8 +1036,8 @@ QString TemplateParser::pipe( const QString &cmd, const QString &buf ) proc.detach(); if ( mDebug ) { KMessageBox::error( 0, - i18n( "Pipe command did not finish within %1 seconds: %2" ). - arg( PipeTimeout ).arg( cmd ) ); + i18n( "Pipe command did not finish within %1 seconds: %2", + PipeTimeout, cmd ) ); } }