Removed string methods from the file widget

This commit is contained in:
mcmullen%netscape.com 1999-05-15 22:01:21 +00:00
Родитель 749505419a
Коммит e8ee5c8aa3
2 изменённых файлов: 6 добавлений и 6 удалений

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

@ -161,9 +161,9 @@ void nsFileControlFrame::MouseClicked(nsIPresContext* aPresContext)
result = fileWidget->Show();
if (result) {
nsString fileName;
fileWidget->GetFile(fileName);
mTextFrame->SetProperty(nsHTMLAtoms::value,fileName);
nsFileSpec fileSpec;
fileWidget->GetFile(fileSpec);
mTextFrame->SetProperty(nsHTMLAtoms::value,fileSpec.GetNativePathCString());
}
NS_RELEASE(fileWidget);
}

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

@ -161,9 +161,9 @@ void nsFileControlFrame::MouseClicked(nsIPresContext* aPresContext)
result = fileWidget->Show();
if (result) {
nsString fileName;
fileWidget->GetFile(fileName);
mTextFrame->SetProperty(nsHTMLAtoms::value,fileName);
nsFileSpec fileSpec;
fileWidget->GetFile(fileSpec);
mTextFrame->SetProperty(nsHTMLAtoms::value,fileSpec.GetNativePathCString());
}
NS_RELEASE(fileWidget);
}