diff options
author | Jürgen Schmidt <jsc@apache.org> | 2013-03-20 14:19:45 +0000 |
---|---|---|
committer | Jürgen Schmidt <jsc@apache.org> | 2013-03-20 14:19:45 +0000 |
commit | de75173372c022c3004643d8978f76662261130b (patch) | |
tree | fba7254f8943fbb8b8e1e6baa80d1de7d84349e1 /offapi | |
parent | 5da75c78a80e43cb2bb4ed777ae5efcc1449cdda (diff) |
#121734# extend XTextMarkup to support ranges
Patch by: Kai Labusch
Review by: arielch, jsc
Notes
Notes:
merged as: c43ffd3d44060c0801138e33a9dfc917133b7c21
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/text/XTextMarkup.idl | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/offapi/com/sun/star/text/XTextMarkup.idl b/offapi/com/sun/star/text/XTextMarkup.idl index d051ad764ae0..041ee6841bb3 100644 --- a/offapi/com/sun/star/text/XTextMarkup.idl +++ b/offapi/com/sun/star/text/XTextMarkup.idl @@ -32,6 +32,11 @@ #include <com/sun/star/text/TextMarkupType.idl> #endif +#ifndef __com_sun_star_text_XTextRange_idl__ +#include <com/sun/star/text/XTextRange.idl> +#endif + + //============================================================================= module com { module sun { module star { module text { @@ -74,11 +79,17 @@ interface XTextMarkup @param xMarkupInfoContainer contains additional information about the markup. */ - void commitTextMarkup( [in] long nType, + void commitStringMarkup( [in] long nType, [in] string aIdentifier, [in] long nStart, [in] long nLength, [in] com::sun::star::container::XStringKeyMap xMarkupInfoContainer ); + + void commitTextRangeMarkup( [in] long nType, + [in] string aIdentifier, + [in] com::sun::star::text::XTextRange xRange, + [in] com::sun::star::container::XStringKeyMap xMarkupInfoContainer ); + }; }; }; }; }; |