Skip to content

Commit

Permalink
Fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
p-yukusai committed Feb 5, 2023
1 parent ae328ee commit 3edaba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/MainMenuBar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ QString osDef(){
#if defined(Q_OS_WIN)
QString operatingSystem = "Win";
#else
QString operatingSystem = "Posix"
QString operatingSystem = "Posix";
#endif
return operatingSystem;
}
Expand Down

0 comments on commit 3edaba1

Please sign in to comment.