Move remaining FileUtil functions into the File namespace.

This commit is contained in:
Henrik Rydgård 2021-04-25 20:38:22 +02:00
parent 0ccc63b43e
commit 1b13badeb4
32 changed files with 103 additions and 103 deletions

View file

@ -28,8 +28,8 @@
void InstallZipScreen::CreateViews() {
using namespace UI;
FileInfo fileInfo;
bool success = getFileInfo(zipPath_.c_str(), &fileInfo);
File::FileInfo fileInfo;
bool success = File::getFileInfo(zipPath_.c_str(), &fileInfo);
auto di = GetI18NCategory("Dialog");
auto iz = GetI18NCategory("InstallZip");