Skip to content

Commit

Permalink
App: fix compilation error after "git rebase" on develop branch
Browse files Browse the repository at this point in the history
  • Loading branch information
HuguesDelorme committed Dec 12, 2024
1 parent 4e41dbe commit ee15cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/app_module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ Settings::Variant recentItemsToVariant(const std::vector<RecentItem>& recentItem
QByteArray blob;
QDataStream stream(&blob, QIODevice::WriteOnly);
AppModule::write(stream, recentItems);
return Variant(QtCoreUtils::toStdByteArray(blob));
return Settings::Variant(QtCoreUtils::toStdByteArray(blob));
}

template<typename RecentItem>
Expand Down

0 comments on commit ee15cc3

Please sign in to comment.