Implement operator= for nsFilePath when given an nsFilePath. a=mcmullen...

This commit is contained in:
mscott%netscape.com 1999-02-23 03:10:29 +00:00
Родитель dbc9dd98bf
Коммит 75ce123dcc
2 изменённых файлов: 20 добавлений и 0 удалений

Просмотреть файл

@ -422,6 +422,16 @@ void nsFilePath::operator = (const nsFileURL& inOther)
#endif
}
//----------------------------------------------------------------------------------------
void nsFilePath::operator = (const nsFilePath& inOther)
//----------------------------------------------------------------------------------------
{
nsFileSpecHelpers::StringAssign(mPath, inOther.mPath);
#ifdef XP_MAC
mNativeFileSpec = inOther.GetNativeSpec();
#endif
}
//========================================================================================
// nsNativeFileSpec implementation
//========================================================================================

Просмотреть файл

@ -422,6 +422,16 @@ void nsFilePath::operator = (const nsFileURL& inOther)
#endif
}
//----------------------------------------------------------------------------------------
void nsFilePath::operator = (const nsFilePath& inOther)
//----------------------------------------------------------------------------------------
{
nsFileSpecHelpers::StringAssign(mPath, inOther.mPath);
#ifdef XP_MAC
mNativeFileSpec = inOther.GetNativeSpec();
#endif
}
//========================================================================================
// nsNativeFileSpec implementation
//========================================================================================