summaryrefslogtreecommitdiff
path: root/forms/source/xforms/computedexpression.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/xforms/computedexpression.hxx')
-rw-r--r--forms/source/xforms/computedexpression.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/forms/source/xforms/computedexpression.hxx b/forms/source/xforms/computedexpression.hxx
index a2c43053f0b9..3f347d0cf753 100644
--- a/forms/source/xforms/computedexpression.hxx
+++ b/forms/source/xforms/computedexpression.hxx
@@ -66,7 +66,8 @@ protected:
bool _checkExpression( const sal_Char* pExpression ) const;
/// allow manipulation of the expression before it is evaluated
- const OUString _getExpressionForEvaluation() const;
+ // the default implementation is to do nothing...
+ const OUString _getExpressionForEvaluation() const { return msExpression; }
/// obtain a (suitable) XPathAPI implementation
com::sun::star::uno::Reference<com::sun::star::xml::xpath::XXPathAPI> _getXPathAPI(const xforms::EvaluationContext& aContext);
@@ -82,7 +83,7 @@ public:
/// get the expression string
- OUString getExpression() const;
+ OUString getExpression() const { return msExpression;}
/// set a new expression string
void setExpression( const OUString& rExpression );
@@ -117,7 +118,7 @@ public:
// get the result of this expression as string/bool/...
// (Results will be based on the last call of evaluate(..). The caller
// must call evaluate to ensure current results.)
- com::sun::star::uno::Reference<com::sun::star::xml::xpath::XXPathObject> getXPath() const;
+ com::sun::star::uno::Reference<com::sun::star::xml::xpath::XXPathObject> getXPath() const { return mxResult;}
bool getBool( bool bDefault = false ) const;
OUString getString( const OUString& rDefault = OUString() ) const;