diff options
author | Noel Grandin <noel@peralex.com> | 2013-02-04 10:20:53 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-02-12 10:14:42 +0200 |
commit | 37ef449b93750b6101cf04b8112fa2ef64ba38ff (patch) | |
tree | 4496badf43c721d95c451e836c4ce1744538e271 /offapi | |
parent | 790b0c4d5328ccdb6e57206f1db2cd042335c635 (diff) |
fdo#46808, Adapt animations::SequenceTimeContainer UNO service to new style
The service already existed, it just did not have an IDL file
Change-Id: I9698830f9c01936a12669ee950e2b231f303c2f8
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/UnoApi_offapi.mk | 1 | ||||
-rw-r--r-- | offapi/com/sun/star/animations/SequenceTimeContainer.idl | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index 4ebd6b554d1b..da049875a358 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -31,6 +31,7 @@ $(eval $(call gb_UnoApi_set_include,offapi,\ $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/animations,\ + SequenceTimeContainer \ TargetPropertiesCreator \ )) $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/auth,\ diff --git a/offapi/com/sun/star/animations/SequenceTimeContainer.idl b/offapi/com/sun/star/animations/SequenceTimeContainer.idl new file mode 100644 index 000000000000..75746bf5b4e6 --- /dev/null +++ b/offapi/com/sun/star/animations/SequenceTimeContainer.idl @@ -0,0 +1,38 @@ +/* -*- 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_animations_SequenceTimeContainer_idl__ +#define __com_sun_star_animations_SequenceTimeContainer_idl__ + +#include <com/sun/star/animations/XTimeContainer.idl> + + + module com { module sun { module star { module animations { + + +/** + @since LibreOffice 4.1 +*/ +service SequenceTimeContainer : XTimeContainer; + + +}; }; }; }; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |