Updated the item about BDirectory::Contains().

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5883 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2004-01-03 16:26:14 +00:00
parent c98aac40f6
commit dccf026397
+10 -6
View File
@@ -163,17 +163,21 @@ Location: FindEntry()
Description: Crashs when passing a NULL BEntry. Description: Crashs when passing a NULL BEntry.
OS: BeOS R5 OS: BeOS R5 (OBOS)
Module: BDirectory Module: BDirectory
Location: Contains() Location: Contains(const char*, int32)
Description: If the BDirectory is uninitialized, the const char* version Description: If the supplied path is absolute and refers to an existing
returns true for existing entries, whereas the const BEntry* entry, true is returned, even if the directory does not contain
version returns false. the entry or is not even initialized.
(The OBOS implementation makes the behavior more consistent
with the BEntry* version, which returns false when the
directory is not initialized and true only if the directory
actually contains the entry.)
OS: BeOS R5 OS: BeOS R5
Module: BDirectory Module: BDirectory
Location: Contains(const BEntry*, bool) Location: Contains(const BEntry*, int32)
Description: Crashs when passing a NULL BEntry. Description: Crashs when passing a NULL BEntry.