ci: fix Qt6.4 QLatin1String::toUtf8 and stale Windows shm branch

- import.cpp: pass the const char* input ids directly; the QLatin1String
  roundtrip uses toUtf8(), unavailable in distro Qt 6.4
- sharedmemoryregion.cpp: the Windows branch still used the pre-refactor
  API (Open/Close/kCreate); rewritten to the current lowercase
  open/close/k_create interface
This commit is contained in:
2026-08-02 21:29:03 +08:00
parent 4f13e20fff
commit 348881f558
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -575,7 +575,7 @@ void ImportTool::drop_ghosts(bool insert, void *parent_command)
oakengine_node_connect_command(
footage_stream.footage,
reinterpret_cast<OakEngineNode *>(transform),
QLatin1String(oakengine_transform_texture_input_id()).toUtf8().constData(),
oakengine_transform_texture_input_id(),
-1));
oakengine_undo_command_multi_add_child(
command,
@@ -607,7 +607,7 @@ void ImportTool::drop_ghosts(bool insert, void *parent_command)
oakengine_node_connect_command(
footage_stream.footage,
reinterpret_cast<OakEngineNode *>(volume_node),
QLatin1String(oakengine_volume_samples_input_id()).toUtf8().constData(),
oakengine_volume_samples_input_id(),
-1));
oakengine_undo_command_multi_add_child(
command,