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

@@ -114,6 +114,13 @@ PRBool nsFileSpec::IsDirectory() const
return !mPath.IsEmpty() && 0 == stat(mPath, &st) && S_ISDIR(st.st_mode);
} // nsFileSpec::IsDirectory
//----------------------------------------------------------------------------------------
PRBool nsFileSpec::IsHidden() const
//----------------------------------------------------------------------------------------
{
return PR_FALSE; // FIX!!!!!
} // nsFileSpec::IsHidden
//----------------------------------------------------------------------------------------
void nsFileSpec::GetParent(nsFileSpec& outSpec) const
//----------------------------------------------------------------------------------------