fixed BFile

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1682 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
beveloper 2002-10-26 13:51:09 +00:00
parent 343b352fe1
commit 23d36867f6
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ public:
BFile(const entry_ref *ref, uint32 openMode);
BFile(const BEntry *entry, uint32 openMode);
BFile(const char *path, uint32 openMode);
BFile(BDirectory *dir, const char *path, uint32 openMode);
BFile(const BDirectory *dir, const char *path, uint32 openMode);
virtual ~BFile();
status_t SetTo(const entry_ref *ref, uint32 openMode);

View File

@ -94,7 +94,7 @@ BFile::BFile(const char *path, uint32 openMode)
\param openMode the mode in which the file should be opened
\see SetTo() for values for \a openMode
*/
BFile::BFile(BDirectory *dir, const char *path, uint32 openMode)
BFile::BFile(const BDirectory *dir, const char *path, uint32 openMode)
: BNode(),
BPositionIO(),
fMode(0)