summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorJürgen Schmidt <jsc@apache.org>2013-03-20 14:17:09 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-05-23 11:55:26 +0100
commitc5b604b9527d0dc32066e17dc3ce7f7370a78fe1 (patch)
treeb00c084f1ad200d345aa25e656b4ae0caade166b /offapi
parent5e059c1ee53b6be058f66a7c43af0e75f3cadfa1 (diff)
Resolves: #i121732# add new interface XMarkingAccess
Patch by: Kai Labusch Review by: arielch, jsc (cherry picked from commit c1fb6ce135ad39299164aeecebfa746db210d0e3) Conflicts: offapi/com/sun/star/text/makefile.mk sw/inc/unotextcursor.hxx sw/source/core/unocore/unoobj.cxx Change-Id: I68029b28908a57c4ed39d798269b5a8786972be0
Diffstat (limited to 'offapi')
-rw-r--r--offapi/UnoApi_offapi.mk1
-rw-r--r--offapi/com/sun/star/text/XMarkingAccess.idl34
2 files changed, 35 insertions, 0 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk
index 9f0df7a90fd3..2e5723f89f3e 100644
--- a/offapi/UnoApi_offapi.mk
+++ b/offapi/UnoApi_offapi.mk
@@ -3732,6 +3732,7 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,offapi/com/sun/star/text,\
XLineNumberingProperties \
XMailMergeBroadcaster \
XMailMergeListener \
+ XMarkingAccess \
XMultiTextMarkup \
XNumberingFormatter \
XNumberingRulesSupplier \
diff --git a/offapi/com/sun/star/text/XMarkingAccess.idl b/offapi/com/sun/star/text/XMarkingAccess.idl
new file mode 100644
index 000000000000..86cd891cd297
--- /dev/null
+++ b/offapi/com/sun/star/text/XMarkingAccess.idl
@@ -0,0 +1,34 @@
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * 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 .
+ */
+#ifndef __com_sun_star_text_XMarkingAccess_idl__
+#define __com_sun_star_text_XMarkingAccess_idl__
+
+#include <com/sun/star/uno/XInterface.idl>
+
+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