diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-03-11 16:14:47 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-03-11 16:50:00 +0100 |
commit | 765f6211b1371c1e40de386e715de6b3d1a8df86 (patch) | |
tree | 0d0a8d92097a628ac72316593db9561c23948685 /sc/inc/inputopt.hxx | |
parent | 0bd20a26686d01efea4c64c1f4aac53ae1c142aa (diff) |
utl::ConfigItem::Commit() should call ClearModified()
Rename the virtual function, and add a new non-virtual Commit() to do
that.
Change-Id: I09421df781ba965d6ff638b46cd8214fb3a00022
Diffstat (limited to 'sc/inc/inputopt.hxx')
-rw-r--r-- | sc/inc/inputopt.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/inc/inputopt.hxx b/sc/inc/inputopt.hxx index b6d2a0940913..cd82ef0d5336 100644 --- a/sc/inc/inputopt.hxx +++ b/sc/inc/inputopt.hxx @@ -81,6 +81,8 @@ class ScInputCfg : public ScInputOptions, { com::sun::star::uno::Sequence<OUString> GetPropertyNames(); + virtual void ImplCommit() SAL_OVERRIDE; + public: ScInputCfg(); @@ -88,7 +90,6 @@ public: void OptionsChanged(); // after direct access to SetOptions base class virtual void Notify( const com::sun::star::uno::Sequence<OUString>& aPropertyNames ) SAL_OVERRIDE; - virtual void Commit() SAL_OVERRIDE; }; #endif |