diff options
author | Noel Grandin <noel@peralex.com> | 2013-05-13 15:09:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-05-14 08:08:26 +0200 |
commit | 0394cb37a2d378511f265004b285fd93df37e5ca (patch) | |
tree | f3a7269690e6fbd34b7ef09ff9e874b6f15345ba /offapi | |
parent | 4481f5d4bcf0ba5b5d02c1dbff6d24d1e5301ff6 (diff) |
fdo#46808, Convert ui::ImageManager to new style
The service already existed, it just needed an IDL file.
Change-Id: I5bdc3064b0a3caa5a0d2abf4ef5ba3159889c7af
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/UnoApi_offapi.mk | 1 | ||||
-rw-r--r-- | offapi/com/sun/star/ui/ImageManager.idl | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index 7beadf6c34a3..90a54dea5a10 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -3938,6 +3938,7 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,offapi/com/sun/star/ui,\ ContextMenuExecuteEvent \ ContextMenuInterceptorAction \ DockingArea \ + ImageManager \ ImageType \ ItemStyle \ ItemType \ diff --git a/offapi/com/sun/star/ui/ImageManager.idl b/offapi/com/sun/star/ui/ImageManager.idl new file mode 100644 index 000000000000..f8b5b1a4dee0 --- /dev/null +++ b/offapi/com/sun/star/ui/ImageManager.idl @@ -0,0 +1,37 @@ +/* -*- 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_ui_ImageManager_idl__ +#define __com_sun_star_ui_ImageManager_idl__ + +#include <com/sun/star/ui/XImageManager.idl> + +module com { module sun { module star { module ui { + + +/** + + @since LibreOffice 4.1 +*/ +service ImageManager : XImageManager; + +}; }; }; }; // com.sun.star.ui + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |