]> git.tdb.fi Git - builder.git/blobdiff - source/copy.h
Adapt to changes in msppath
[builder.git] / source / copy.h
index 0a03ae6d2c12edb081b338b8820ae97623c81486..deb60209b7cbc4b3ab4aa551fe60c2d2318355ce 100644 (file)
@@ -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