X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcopy.h;h=deb60209b7cbc4b3ab4aa551fe60c2d2318355ce;hb=4d0d003b022943d8a0e39ba19078bab8d32d8857;hp=0a03ae6d2c12edb081b338b8820ae97623c81486;hpb=0ac8d6708b8c758fb89d97a0049d4a329990b83b;p=builder.git diff --git a/source/copy.h b/source/copy.h index 0a03ae6..deb6020 100644 --- a/source/copy.h +++ b/source/copy.h @@ -20,7 +20,7 @@ Copies a file to another place. Used by the Install target. class Copy: public InternalAction { public: - Copy(Builder &, const Package &, const Msp::Path::Path &, const Msp::Path::Path &); + Copy(Builder &, const Package &, const Msp::Path &, const Msp::Path &); private: /** A worker thread that actually does the data transfer. @@ -35,8 +35,8 @@ private: void main(); }; - Msp::Path::Path src; - Msp::Path::Path dest; + Msp::Path src; + Msp::Path dest; }; #endif