diff options
author | Jürgen Schmidt <jsc@apache.org> | 2013-03-20 14:17:09 +0000 |
---|---|---|
committer | Jürgen Schmidt <jsc@apache.org> | 2013-03-20 14:17:09 +0000 |
commit | c1fb6ce135ad39299164aeecebfa746db210d0e3 (patch) | |
tree | cd729a277dca41b292e47b507bde4ecb47558449 /offapi | |
parent | 5898e201ae8bbc1203bf24629a389f8f3b3e02ee (diff) |
#121732# add new interface XMarkingAccess
Patch by: Kai Labusch
Review by: arielch, jsc
Notes
Notes:
merged as: c5b604b9527d0dc32066e17dc3ce7f7370a78fe1
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/text/XMarkingAccess.idl | 47 | ||||
-rw-r--r-- | offapi/com/sun/star/text/makefile.mk | 1 |
2 files changed, 48 insertions, 0 deletions
diff --git a/offapi/com/sun/star/text/XMarkingAccess.idl b/offapi/com/sun/star/text/XMarkingAccess.idl new file mode 100644 index 000000000000..cb9b539816ee --- /dev/null +++ b/offapi/com/sun/star/text/XMarkingAccess.idl @@ -0,0 +1,47 @@ +/************************************************************** + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * + *************************************************************/ + + +#ifndef __com_sun_star_text_XMarkingAccess_idl__ +#define __com_sun_star_text_XMarkingAccess_idl__ + +#ifndef __com_sun_star_uno_XInterface_idl__ +#include <com/sun/star/uno/XInterface.idl> +#endif + +//============================================================================= + + module com { module sun { module star { module text { + +//============================================================================= + +/** extends a text range by method to modify its position. + */ +interface XMarkingAccess +{ + void invalidateMarkings([in] long nType); +}; + +//============================================================================= + +}; }; }; }; + +#endif diff --git a/offapi/com/sun/star/text/makefile.mk b/offapi/com/sun/star/text/makefile.mk index adf2e89c8955..82be3aa9ddc3 100644 --- a/offapi/com/sun/star/text/makefile.mk +++ b/offapi/com/sun/star/text/makefile.mk @@ -234,6 +234,7 @@ IDLFILES=\ XTextColumns.idl\ XTextContent.idl\ XTextCursor.idl\ + XMarkingAccess.idl\ XTextCopy.idl\ XTextDocument.idl\ XTextEmbeddedObject.idl\ |