summaryrefslogtreecommitdiff
path: root/transformcontext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'transformcontext.cpp')
-rw-r--r--transformcontext.cpp4
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);