Bug 1173317 - Change the string argument for Directory::GetName from nsString to nsAString. r=sicking

This commit is contained in:
Jonathan Watt 2015-06-04 13:19:25 +01:00
Родитель 9d4eaf816c
Коммит cf2cb3cb80
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -81,7 +81,7 @@ Directory::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
}
void
Directory::GetName(nsString& aRetval) const
Directory::GetName(nsAString& aRetval) const
{
aRetval.Truncate();

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

@ -59,7 +59,7 @@ public:
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
void
GetName(nsString& aRetval) const;
GetName(nsAString& aRetval) const;
already_AddRefed<Promise>
CreateFile(const nsAString& aPath, const CreateFileOptions& aOptions,