Skip to content

Commit

Permalink
Rename Path to FilePath, since it's only for files
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Jul 17, 2011
1 parent 7d8cddd commit 0001e72
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.winxed
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ function setup_stable_libraries(var rosella)
"filesystem/Entry",
"filesystem/Directory",
"filesystem/File",
"filesystem/FilePath",
"filesystem/FileSystem",
"filesystem/Path",
"filesystem/Visitor",
"filesystem/visitor/Delete",
"filesystem/visitor/Function",
Expand Down
2 changes: 1 addition & 1 deletion src/filesystem/File.winxed
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ namespace Rosella { namespace FileSystem
function path_obj()
{
string path = self.path;
return new Rosella.FileSystem.Path(path);
return new Rosella.FileSystem.FilePath(path);
}
}
}}
4 changes: 2 additions & 2 deletions src/filesystem/Path.winxed → src/filesystem/FilePath.winxed
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
namespace Rosella { namespace FileSystem
{
class Path
class FilePath
{
var details;

function Path(string path)
function FilePath(string path)
{
self.details = {};
using Rosella.FileSystem.path_separator;
Expand Down

0 comments on commit 0001e72

Please sign in to comment.