1
0
mirror of https://github.com/Swordfish90/cool-retro-term.git synced 2026-02-08 00:32:27 +00:00

Remove warnings related qt6 signal handlers.

This commit is contained in:
Filippo Scognamiglio
2025-12-10 23:20:31 +01:00
parent 3f51308057
commit fed2bf21fe
6 changed files with 25 additions and 25 deletions

View File

@@ -72,8 +72,8 @@ MenuBar {
appSettings.handleFontChanged()
}
}
onObjectAdded: profilesMenu.insertItem(index, object)
onObjectRemoved: profilesMenu.removeItem(object)
onObjectAdded: function(index, object) { profilesMenu.insertItem(index, object) }
onObjectRemoved: function(object) { profilesMenu.removeItem(object) }
}
}
Menu {