fix compile
authorStanislav Visnovsky <visnov@suse.cz>
Wed, 22 Mar 2006 19:10:30 +0000 (19:10 +0000)
committerStanislav Visnovsky <visnov@suse.cz>
Wed, 22 Mar 2006 19:10:30 +0000 (19:10 +0000)
testsuite/solver/src/helix/HelixScriptImpl.cc
testsuite/solver/src/helix/HelixScriptImpl.h

index 9c3359537655f4a5a52fd83a385e56ba12da9c95..b21a91838ddc0d3435a2533ae0b5f984b83195d0 100644 (file)
@@ -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 */
index 4807c357324e3c50eda747a4a75ff405b21a5387..01b79fc72a34f8a5d201c919432f3348eac47fac 100644 (file)
@@ -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;
       /** */