Commit 46ab901c authored by Frederik Gladhorn's avatar Frederik Gladhorn
Browse files

Merge remote-tracking branch 'origin/stable' into dev

Change-Id: I6cadf21a571a4d6608c75d4e79f5231c8e4ab5aa
parents 0c79c2aa 4bd45d7d
Branches
Tags
No related merge requests found
Showing with 7 additions and 10 deletions
......@@ -100,7 +100,6 @@ namespace QPatternist
/* *** The functions below are internal. */
private:
Q_DISABLE_COPY(AbstractXmlPullProvider)
AbstractXmlPullProviderPrivate *d;
};
}
......
......@@ -104,10 +104,11 @@ namespace QPatternist
{
public:
ProjectedStep(const ProjectedNodeTest::Ptr test,
const QXmlNodeModelIndex::Axis axis) : m_test(test),
m_axis(axis)
const QXmlNodeModelIndex::Axis axis)
{
Q_ASSERT(m_test);
Q_ASSERT(test);
Q_UNUSED(test);
Q_UNUSED(axis);
}
virtual Action actionForElement(const QXmlName name,
......@@ -120,19 +121,17 @@ namespace QPatternist
}
private:
const ProjectedNodeTest::Ptr m_test;
const QXmlNodeModelIndex::Axis m_axis;
};
class ProjectedPath : public ProjectedExpression
{
public:
ProjectedPath(const ProjectedExpression::Ptr left,
const ProjectedExpression::Ptr right) : m_left(left),
m_right(right)
const ProjectedExpression::Ptr right) : m_left(left)
{
Q_ASSERT(m_left);
Q_ASSERT(m_right);
Q_ASSERT(right);
Q_UNUSED(right);
}
virtual Action actionForElement(const QXmlName name,
......@@ -152,7 +151,6 @@ namespace QPatternist
private:
const ProjectedExpression::Ptr m_left;
const ProjectedExpression::Ptr m_right;
};
}
......
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