diff options
author | Noel Grandin <noel@peralex.com> | 2013-01-10 14:20:08 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-01-28 08:25:23 +0200 |
commit | b772eb0c728a06bdf72866ef61f800bbf7ec15a9 (patch) | |
tree | 1f4df1da4aa6ba30b3980c0bf60af2407270dca6 /offapi | |
parent | 83235caca899ba8088a24b8713ba49f52e4ba8ec (diff) |
fdo#46808, Adapt document::FilterConfigRefresh UNO service to new style
The service already existed, it just did not have an IDL file
Change-Id: I6894a3435159d9f529f2036354e70ee6358fc778
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/UnoApi_offapi.mk | 1 | ||||
-rw-r--r-- | offapi/com/sun/star/document/FilterConfigRefresh.idl | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index 5f924a49cfb2..5960919e09e4 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -95,6 +95,7 @@ $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/deployment $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/document,\ DocumentProperties \ DocumentRevisionListPersistence \ + FilterConfigRefresh \ GraphicObjectResolver \ OleEmbeddedServerRegistration \ OOXMLDocumentPropertiesImporter \ diff --git a/offapi/com/sun/star/document/FilterConfigRefresh.idl b/offapi/com/sun/star/document/FilterConfigRefresh.idl new file mode 100644 index 000000000000..cd28561058cc --- /dev/null +++ b/offapi/com/sun/star/document/FilterConfigRefresh.idl @@ -0,0 +1,40 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * 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_document_FilterConfigRefresh_idl__ +#define __com_sun_star_document_FilterConfigRefresh_idl__ + +#include <com/sun/star/util/XRefreshable.idl> + + +module com { module sun { module star { module document { + + +/** + @since LibreOffice 4.1 + */ +service FilterConfigRefresh : com::sun::star::util::XRefreshable; + + +}; }; }; }; + + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |