From ea081b8ebbd776586bd8a53babd5f9134c617f8c Mon Sep 17 00:00:00 2001 From: Stanislav Visnovsky Date: Wed, 22 Mar 2006 19:10:30 +0000 Subject: [PATCH] fix compile --- testsuite/solver/src/helix/HelixScriptImpl.cc | 4 ++-- testsuite/solver/src/helix/HelixScriptImpl.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/testsuite/solver/src/helix/HelixScriptImpl.cc b/testsuite/solver/src/helix/HelixScriptImpl.cc index 9c33595..b21a918 100644 --- a/testsuite/solver/src/helix/HelixScriptImpl.cc +++ b/testsuite/solver/src/helix/HelixScriptImpl.cc @@ -40,11 +40,11 @@ HelixScriptImpl::source() const { return _source; } /** Get the script to perform the change */ -std::string HelixScriptImpl::do_script() const +Pathname HelixScriptImpl::do_script() const { return "do_script"; } /** Get the script to undo the change */ -std::string HelixScriptImpl::undo_script() const +Pathname HelixScriptImpl::undo_script() const { return "undo_script"; } /** Check whether script to undo the change is available */ diff --git a/testsuite/solver/src/helix/HelixScriptImpl.h b/testsuite/solver/src/helix/HelixScriptImpl.h index 4807c35..01b79fc 100644 --- a/testsuite/solver/src/helix/HelixScriptImpl.h +++ b/testsuite/solver/src/helix/HelixScriptImpl.h @@ -35,9 +35,9 @@ public: HelixScriptImpl( Source_Ref source_r, const zypp::HelixParser & data ); /** Get the script to perform the change */ - virtual std::string do_script() const; + virtual Pathname do_script() const; /** Get the script to undo the change */ - virtual std::string undo_script() const; + virtual Pathname undo_script() const; /** Check whether script to undo the change is available */ virtual bool undo_available() const; /** */ -- 2.7.4