From c435c7daa9df1b08dc85132fcd1c154bea9b69e2 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 18:21:03 +0000 Subject: Fixes to use libbu++ Bu::String --- src/functionexecute.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/functionexecute.cpp') diff --git a/src/functionexecute.cpp b/src/functionexecute.cpp index 0b0aabf..070ca53 100644 --- a/src/functionexecute.cpp +++ b/src/functionexecute.cpp @@ -18,7 +18,7 @@ FunctionExecute::~FunctionExecute() { } -Bu::FString FunctionExecute::getName() const +Bu::String FunctionExecute::getName() const { return "execute"; } @@ -30,7 +30,7 @@ Variable FunctionExecute::call( Variable &/*input*/, VarList lParams ) pContext->getView()->cmdStarted( lParams.first().getString() ); Process pCmd( Process::Both, "/bin/bash", "/bin/bash", "-c", lParams.first().getString().getStr(), NULL ); - FString sStdOut, sStdErr; + String sStdOut, sStdErr; do { char buf[4096]; -- cgit v1.2.3