Modernize code

This commit is contained in:
Pcornat 2026-01-22 21:36:22 +01:00
commit a67eb0d0b5
Signed by: Pcornat
GPG key ID: E0326CC678A00BDD
3 changed files with 24 additions and 23 deletions

View file

@ -1,6 +1,6 @@
#include "app_win_2_back.hpp"
int main(int argc, char *argv[]) {
auto app = gui_to_app::AppWin2Back::create();
int main(const int argc, char *argv[]) {
const auto app = gui_to_app::AppWin2Back::create();
return app->run(argc, argv);
}