[olympic,nostalgia] Change order of oxModelFieldRename args
All checks were successful
Build / build (push) Successful in 2m22s

This commit is contained in:
Gary Talent 2024-01-28 17:59:54 -06:00
parent 227dd68a4f
commit b75bbc4d20
3 changed files with 8 additions and 8 deletions

View File

@ -40,7 +40,7 @@ oxModelBegin(TileSheetClipboard::Pixel)
oxModelEnd() oxModelEnd()
oxModelBegin(TileSheetClipboard) oxModelBegin(TileSheetClipboard)
oxModelFieldRename(pixels, m_pixels) oxModelFieldRename(m_pixels, pixels)
oxModelEnd() oxModelEnd()
class CutPasteCommand: public TileSheetCommand { class CutPasteCommand: public TileSheetCommand {

View File

@ -58,10 +58,10 @@ struct TileDoc {
}; };
oxModelBegin(TileDoc) oxModelBegin(TileDoc)
oxModelFieldRename(subsheet_id, subsheetId) oxModelFieldRename(subsheetId, subsheet_id)
oxModelFieldRename(subsheet_path, subsheetPath) oxModelFieldRename(subsheetPath, subsheet_path)
oxModelField(type) oxModelField(type)
oxModelFieldRename(layer_attachments, layerAttachments) oxModelFieldRename(layerAttachments, layer_attachments)
oxModelEnd() oxModelEnd()
struct SceneDoc { struct SceneDoc {

View File

@ -34,10 +34,10 @@ struct StudioConfig {
}; };
oxModelBegin(StudioConfig) oxModelBegin(StudioConfig)
oxModelFieldRename(active_tab_item_name, activeTabItemName) oxModelFieldRename(activeTabItemName, active_tab_item_name)
oxModelFieldRename(project_path, projectPath) oxModelFieldRename(projectPath, project_path)
oxModelFieldRename(open_files, openFiles) oxModelFieldRename(openFiles, open_files)
oxModelFieldRename(show_project_explorer, showProjectExplorer) oxModelFieldRename(showProjectExplorer, show_project_explorer)
oxModelEnd() oxModelEnd()
StudioUI::StudioUI(studio::StudioContext &ctx, ox::StringView projectDataDir) noexcept: StudioUI::StudioUI(studio::StudioContext &ctx, ox::StringView projectDataDir) noexcept: