summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-06-05 16:01:16 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-06-05 16:10:17 +0200
commitcd1bbf0a2b9141c0d20f676503b5cc3dc2b00ee3 (patch)
treea366335cef4e2a9e5c9c431c010e615c503e9328 /offapi/com/sun/star
parentbeb4c56a2fa5957475d1482e9634692694f5e9fe (diff)
Fixes for new-style service com.sun.star.sheet.GlobalSheetSettings
...changed from old-style with a39c96af53ec3364de70012ebfa7c09c4a55a7c3 "fdo#46808, Convert sheet::GlobalSheetSettings service to new style." The XPropertySet can be treated as an implementation detail (but kept in the implementation for backwards compatibility). Also, this should arguably be a singleton rather than a service, like some related services (e.g., com.sun.star.sheet.RecentFunctions), too. Change-Id: Ibfe3254188aff91a08b39cbc295fb610ae0dfa5f (cherry picked from commit 33a4d7624fd30454306e659d24665fa251fc9eff)
Diffstat (limited to 'offapi/com/sun/star')
-rw-r--r--offapi/com/sun/star/sheet/GlobalSheetSettings.idl3
-rw-r--r--offapi/com/sun/star/sheet/XGlobalSheetSettings.idl9
2 files changed, 4 insertions, 8 deletions
diff --git a/offapi/com/sun/star/sheet/GlobalSheetSettings.idl b/offapi/com/sun/star/sheet/GlobalSheetSettings.idl
index ea94c62df0c6..15afac426b7c 100644
--- a/offapi/com/sun/star/sheet/GlobalSheetSettings.idl
+++ b/offapi/com/sun/star/sheet/GlobalSheetSettings.idl
@@ -28,6 +28,9 @@ module com { module sun { module star { module sheet {
/** contributes properties to access the settings for all spreadsheets of
a spreadsheet document.
+
+ For backwards compatibility, the attributes of XGlobalSheetSettings can
+ still be accessed via com::sun::star::beans::XPropertySet, too.
*/
published service GlobalSheetSettings : XGlobalSheetSettings;
diff --git a/offapi/com/sun/star/sheet/XGlobalSheetSettings.idl b/offapi/com/sun/star/sheet/XGlobalSheetSettings.idl
index a08833ad4e04..021efe43f36e 100644
--- a/offapi/com/sun/star/sheet/XGlobalSheetSettings.idl
+++ b/offapi/com/sun/star/sheet/XGlobalSheetSettings.idl
@@ -20,7 +20,7 @@
#ifndef __com_sun_star_sheet_XGlobalSheetSettings_idl__
#define __com_sun_star_sheet_XGlobalSheetSettings_idl__
-#include <com/sun/star/beans/XPropertySet.idl>
+#include <com/sun/star/uno/XInterface.idl>
module com { module sun { module star { module sheet {
@@ -31,13 +31,6 @@ module com { module sun { module star { module sheet {
*/
published interface XGlobalSheetSettings
{
-
-//! service com::sun::star::beans::PropertySet;
- /** provides access to the properties.
- */
- interface com::sun::star::beans::XPropertySet;
-
-
/** specifies whether the cursor is moved after entering into cells.
*/
[attribute] boolean MoveSelection;