fix for bug: 10260

removed warning in nsIFileStream.cpp


git-svn-id: svn://10.0.0.236/trunk@40445 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dougt%netscape.com
1999-07-21 17:56:01 +00:00
parent b61ae6dcac
commit 0e3652a9a5
10 changed files with 75 additions and 2 deletions

View File

@@ -194,6 +194,11 @@ PRBool nsFileSpec::IsDirectory() const
return (0 == stat( mPath, &st)) && (S_IFDIR == (st.st_mode & S_IFDIR));
}
PRBool nsFileSpec::IsHidden() const
{
return PR_FALSE; // FIX!
}
void nsFileSpec::GetModDate( TimeStamp& outStamp) const
{
struct stat st;