diff options
author | Moonchild <moonchild@palemoon.org> | 2022-02-03 17:11:21 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-02-03 17:11:21 +0000 |
commit | 097fa969802f76530384926e8ef1f56777be3783 (patch) | |
tree | 8f01134d7c464a164707ce81a47d3a418eef0019 /components/rdf | |
parent | 56b8a05db34fabefad74e20876309263066b5bce (diff) | |
download | aura-central-097fa969802f76530384926e8ef1f56777be3783.tar.gz |
Issue %3057 - Part 9: Adjust all callsites for no longer using GetNativePath
Depending on context, various solutions were used.
Diffstat (limited to 'components/rdf')
-rw-r--r-- | components/rdf/src/nsFileSystemDataSource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/rdf/src/nsFileSystemDataSource.cpp b/components/rdf/src/nsFileSystemDataSource.cpp index 35632d1a3..c67656cd9 100644 --- a/components/rdf/src/nsFileSystemDataSource.cpp +++ b/components/rdf/src/nsFileSystemDataSource.cpp @@ -186,7 +186,7 @@ FileSystemDataSource::Init() NS_NewFileURI(getter_AddRefs(furi), file); NS_ENSURE_TRUE(furi, NS_ERROR_FAILURE); - file->GetNativePath(ieFavoritesDir); + file->GetPersistentDescriptor(ieFavoritesDir); } #endif |