diff options
| author | Brian Potchik <brian@vector35.com> | 2026-01-30 14:04:22 -0500 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2026-01-30 14:04:22 -0500 |
| commit | c674599c102adee1882ccb6778e9c819dfccd305 (patch) | |
| tree | e4aaa5f07378f6e20c57be22ddd20580ce7788f7 /transformcontext.cpp | |
| parent | 3c8ce87f45512006f6f2d6818235e1531ac92ab5 (diff) | |
Improve filename handling for container files.
Diffstat (limited to 'transformcontext.cpp')
| -rw-r--r-- | transformcontext.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/transformcontext.cpp b/transformcontext.cpp index 06e70244..2cdb2a2c 100644 --- a/transformcontext.cpp +++ b/transformcontext.cpp @@ -173,9 +173,9 @@ Ref<TransformContext> TransformContext::GetChild(const string& filename) const } -Ref<TransformContext> TransformContext::SetChild(const DataBuffer& data, const string& filename, BNTransformResult result, const std::string& message) +Ref<TransformContext> TransformContext::SetChild(const DataBuffer& data, const string& filename, BNTransformResult result, const std::string& message, bool filenameIsDescriptor) { - BNTransformContext* child = BNTransformContextSetChild(m_object, data.GetBufferObject(), filename.c_str(), result, message.c_str()); + BNTransformContext* child = BNTransformContextSetChild(m_object, data.GetBufferObject(), filename.c_str(), result, message.c_str(), filenameIsDescriptor); if (!child) return nullptr; return new TransformContext(child); |
