Warning fixes and changes for Linux

- Disabled warnings as errors
- Using -Wall for specifying commonly used warnings
- Fixes for many warnings in the engine code
This commit is contained in:
Turánszki János
2025-07-29 19:59:53 +02:00
committed by GitHub
parent 36d314d387
commit 7ecd39dd6e
30 changed files with 176 additions and 158 deletions
+1 -1
View File
@@ -325,7 +325,7 @@ void ContentBrowserWindow::SetSelection(SELECTION selection)
AddItems(folder, "fbx", ICON_OBJECT);
AddItems(folder, "obj", ICON_OBJECT);
AddItems(folder, "lua", ICON_SCRIPT);
openFolderButton.OnClick([this, folder](wi::gui::EventArgs args) {
openFolderButton.OnClick([folder](wi::gui::EventArgs args) {
wi::helper::OpenUrl(folder);
});
AddWidget(&openFolderButton, wi::gui::Window::AttachmentOptions::NONE);