diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-01-24 19:27:41 +1100 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2014-02-04 10:46:23 +0000 |
commit | a1e4bd413e7a8e4db454d65e5226b9d1859bd5d7 (patch) | |
tree | 1d73da441c6da9cc05a8542bd8a29cc31ede94ad /include | |
parent | 849cc7893ddf39f869b2efa93bd10fcf45c09d24 (diff) |
Change Application::SystemSettingsChanging to OverrideSystemSettings
The name Application::SystemSettingsChanging implies that the app is
being notified that system settings are being changed. This is not
what the function does - in fact, SystemSettingsChanging overrides
a settings object with user defined settings
Change-Id: Ibbf821ff3c7ec5b38e2e79751058494c749b6428
Reviewed-on: https://gerrit.libreoffice.org/7629
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
Tested-by: Jan Holesovsky <kendy@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/svapp.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx index efc4454953f8..ff7432542856 100644 --- a/include/vcl/svapp.hxx +++ b/include/vcl/svapp.hxx @@ -642,14 +642,14 @@ public: @see MergeSystemSettings, SetSettings, GetSettings */ - virtual void SystemSettingsChanging( AllSettings& rSettings ); + virtual void OverrideSystemSettings( AllSettings& rSettings ); /** Set the settings object to the platform/desktop environment system settings. @param rSettings Reference to the settings object to change. - @see SystemSettingsChanging, SetSettings, GetSettings + @see OverrideSystemSettings, SetSettings, GetSettings */ static void MergeSystemSettings( AllSettings& rSettings ); @@ -659,7 +659,7 @@ public: @param rSettings const reference to settings object used to change the application's settings. - @see SystemSettingsChanging, MergeSystemSettings, GetSettings + @see OverrideSystemSettings, MergeSystemSettings, GetSettings */ static void SetSettings( const AllSettings& rSettings ); @@ -669,7 +669,7 @@ public: @returns AllSettings instance that contains the current settings of the application. - @see SystemSettingsChanging, MergeSystemSettings, SetSettings + @see OverrideSystemSettings, MergeSystemSettings, SetSettings */ static const AllSettings& GetSettings(); |