mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
source_files should be Filenames
This commit is contained in:
parent
5c414c34ad
commit
7daecb2bf0
@ -209,7 +209,11 @@ handle_args(Args &args) {
|
||||
return false;
|
||||
}
|
||||
|
||||
copy(args.begin(), args.end(), back_inserter(_source_files));
|
||||
for (Args::const_iterator ai = args.begin();
|
||||
ai != args.end();
|
||||
++ai) {
|
||||
_source_files.push_back(Filename::from_os_specific(*ai));
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
|
||||
#include "programBase.h"
|
||||
#include "filename.h"
|
||||
#include "pvector.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Class : CVSCopy
|
||||
@ -81,7 +82,7 @@ protected:
|
||||
string _cvs_binary;
|
||||
bool _user_aborted;
|
||||
|
||||
typedef vector_string SourceFiles;
|
||||
typedef pvector<Filename> SourceFiles;
|
||||
SourceFiles _source_files;
|
||||
|
||||
CVSSourceTree _tree;
|
||||
|
Loading…
x
Reference in New Issue
Block a user