summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2023-10-16 11:19:19 +0200
committerSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2023-11-09 15:37:16 +0100
commit700ac29771ccec2d66934f66b45a33a48a5ac3f1 (patch)
tree2b34a4490b56b48cf73da59e31e2867fe59f9f38 /offapi
parentc5c2d3195189a329516c918faa251cff4baaed5a (diff)
Use proper type in expert config dialog
In preparation for proper editing support for the different types. Change-Id: I7044ff100c9bfcca5fa8894ff4525a1aac692796 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158028 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/configuration/XDocumentation.idl12
1 files changed, 12 insertions, 0 deletions
diff --git a/offapi/com/sun/star/configuration/XDocumentation.idl b/offapi/com/sun/star/configuration/XDocumentation.idl
index 3bf3c638b141..2ed430a72854 100644
--- a/offapi/com/sun/star/configuration/XDocumentation.idl
+++ b/offapi/com/sun/star/configuration/XDocumentation.idl
@@ -27,6 +27,18 @@ interface XDocumentation {
*/
string getDescriptionByHierarchicalName( [in] string aName )
raises( com::sun::star::container::NoSuchElementException );
+
+ /** @returns
+ the type for the requested object
+
+ @param aName
+ the hierarchical name of the object.
+
+ @throws NoSuchElementException
+ if an element under aName does not exist.
+ */
+ string getTypeByHierarchicalName( [in] string aName )
+ raises( com::sun::star::container::NoSuchElementException );
};
}; }; }; };