Commit aa451d3a authored by twanvl's avatar twanvl

fix linux (g++) build

parent fa1a5d24
......@@ -21,6 +21,9 @@
DECLARE_TYPEOF_COLLECTION(StyleListener*);
DECLARE_DYNAMIC_ARG(Field const*, field_for_reading);
IMPLEMENT_DYNAMIC_ARG(Field const*, field_for_reading, nullptr);
// ----------------------------------------------------------------------------- : Field
Field::Field()
......@@ -226,6 +229,7 @@ void Style::checkContentDependencies(Context& ctx, const Dependency& dep) const
left .initDependencies(ctx,dep);
top .initDependencies(ctx,dep);
width .initDependencies(ctx,dep);
height .initDependencies(ctx,dep);
right .initDependencies(ctx,dep);
bottom .initDependencies(ctx,dep);
......@@ -277,9 +281,6 @@ StyleListener::~StyleListener() {
// ----------------------------------------------------------------------------- : Value : reflecting ScriptValues
// TODO: move this to a more sensible location
DECLARE_DYNAMIC_ARG(Field const*, field_for_reading);
IMPLEMENT_DYNAMIC_ARG(Field const*, field_for_reading, nullptr);
// possible values:
// * "quoted string" # a string
// * 123.456 # a number
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment