It never ends...

This commit is contained in:
Henrik Rydgård 2021-05-09 18:38:48 +02:00
parent a40b1dec5f
commit 2e16e83159
43 changed files with 292 additions and 277 deletions

View file

@ -29,7 +29,7 @@ void InstallZipScreen::CreateViews() {
using namespace UI;
File::FileInfo fileInfo;
bool success = File::GetFileInfo(Path(zipPath_), &fileInfo);
bool success = File::GetFileInfo(zipPath_, &fileInfo);
auto di = GetI18NCategory("Dialog");
auto iz = GetI18NCategory("InstallZip");
@ -43,7 +43,7 @@ void InstallZipScreen::CreateViews() {
root_->Add(leftColumn);
root_->Add(rightColumnItems);
std::string shortFilename = GetFilenameFromPath(zipPath_);
std::string shortFilename = zipPath_.GetFilename();
// TODO: Do in the background?
ZipFileInfo zipInfo;