Skip to content

Commit

Permalink
Change nextFileInfo() to fileInfo()
Browse files Browse the repository at this point in the history
  • Loading branch information
sisakat authored Jan 27, 2024
1 parent 3c2753e commit cbc50ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/about.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ About::About(QWidget* parent) : QDialog(parent), ui(new Ui::About)
QDirIterator::NoIteratorFlags);
while (licenseIterator.hasNext())
{
auto fileInfo = licenseIterator.nextFileInfo();
auto fileInfo = licenseIterator.fileInfo();
QFile licenseFile(fileInfo.absoluteFilePath());
if (licenseFile.open(QIODevice::ReadOnly))
{
Expand Down

0 comments on commit cbc50ab

Please sign in to comment.