Commit dc76b24e authored by Max Kellermann's avatar Max Kellermann

storage/local: OpenDirectory() returns StorageDirectoryReader*

parent e3e3053f
......@@ -92,7 +92,7 @@ LocalStorage::GetInfo(const char *uri_utf8, bool follow, FileInfo &info,
return Stat(path_fs, follow, info, error);
}
LocalDirectoryReader *
StorageDirectoryReader *
LocalStorage::OpenDirectory(const char *uri_utf8, Error &error)
{
AllocatedPath path_fs = MapFS(uri_utf8, error);
......
......@@ -60,8 +60,8 @@ public:
virtual bool GetInfo(const char *uri_utf8, bool follow, FileInfo &info,
Error &error) override;
virtual LocalDirectoryReader *OpenDirectory(const char *uri_utf8,
Error &error) override;
virtual StorageDirectoryReader *OpenDirectory(const char *uri_utf8,
Error &error) override;
virtual std::string MapUTF8(const char *uri_utf8) const override;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment