rename some rna properties filename --> filepath

* filename == "foo.ext"
 * filepath == "/path/to/and/including/foo.ext"

this was alredy followed in some places not not everywhere.
This commit is contained in:
2010-06-02 17:58:28 +00:00
parent fc59a6c6c8
commit 9cbbc9d3af
40 changed files with 158 additions and 162 deletions

View File

@@ -1830,7 +1830,7 @@ static void initPySysObjects(Main *maggie)
while(lib) {
/* lib->name wont work in some cases (on win32),
* even when expanding with gp_GamePythonPath, using lib->filename is less trouble */
initPySysObjects__append(sys_path, lib->filename);
initPySysObjects__append(sys_path, lib->filepath);
lib= (Library *)lib->id.next;
}