diff options
Diffstat (limited to 'include/formula')
-rw-r--r-- | include/formula/funcutl.hxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/formula/funcutl.hxx b/include/formula/funcutl.hxx index d2aec01bf90a..d7734d8fd68d 100644 --- a/include/formula/funcutl.hxx +++ b/include/formula/funcutl.hxx @@ -159,6 +159,16 @@ public: return pLabelWidget; } + void SaveValue() + { + xEntry->save_value(); + } + + bool IsValueChangedFromSaved() const + { + return xEntry->get_value_changed_from_saved(); + } + void SetGetFocusHdl(const Link<WeldRefEdit&,void>& rLink) { maGetFocusHdl = rLink; } void SetLoseFocusHdl(const Link<WeldRefEdit&,void>& rLink) { maLoseFocusHdl = rLink; } void SetModifyHdl(const Link<WeldRefEdit&,void>& rLink) { maModifyHdl = rLink; } |