diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2011-05-30 18:14:15 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-06-18 11:30:46 +0200 |
commit | 4313f43185e447903b2a61fa14bf38ea99b6ab77 (patch) | |
tree | a3b909c5a7207fb92173e6c35ea8815a094d84b5 /offapi/com/sun/star/setup | |
parent | 31c65a35bfb6e3dd83742a61b2314f16021a36b1 (diff) |
ause130: #i117218# change .idl handling to gnu make
Diffstat (limited to 'offapi/com/sun/star/setup')
-rw-r--r-- | offapi/com/sun/star/setup/InstallResponse.idl | 12 | ||||
-rw-r--r-- | offapi/com/sun/star/setup/ResponseErrorCode.idl | 44 | ||||
-rw-r--r-- | offapi/com/sun/star/setup/makefile.mk | 74 |
3 files changed, 46 insertions, 84 deletions
diff --git a/offapi/com/sun/star/setup/InstallResponse.idl b/offapi/com/sun/star/setup/InstallResponse.idl index 61930efdec91..c3c8361b1631 100644 --- a/offapi/com/sun/star/setup/InstallResponse.idl +++ b/offapi/com/sun/star/setup/InstallResponse.idl @@ -27,17 +27,9 @@ #ifndef __com_sun_star_setup_InstallResponse_idl__ #define __com_sun_star_setup_InstallResponse_idl__ -module com { module sun { module star { module setup { - -/// @deprecated -published enum ResponseErrorCode -{ - // DocMerge: empty anyway - NOERROR, +#include <com/sun/star/setup/ResponseErrorCode.idl> - // DocMerge: empty anyway - NOT_ENOUGH_SPACE - }; +module com { module sun { module star { module setup { // DocMerge: empty anyway published struct InstallResponse diff --git a/offapi/com/sun/star/setup/ResponseErrorCode.idl b/offapi/com/sun/star/setup/ResponseErrorCode.idl new file mode 100644 index 000000000000..648e2257fbe1 --- /dev/null +++ b/offapi/com/sun/star/setup/ResponseErrorCode.idl @@ -0,0 +1,44 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ +#ifndef __com_sun_star_setup_ResponseErrorCode_idl__ +#define __com_sun_star_setup_ResponseErrorCode_idl__ + +module com { module sun { module star { module setup { + +/// @deprecated +published enum ResponseErrorCode +{ + // DocMerge: empty anyway + NOERROR, + + // DocMerge: empty anyway + NOT_ENOUGH_SPACE +}; + +}; }; }; }; + +#endif diff --git a/offapi/com/sun/star/setup/makefile.mk b/offapi/com/sun/star/setup/makefile.mk deleted file mode 100644 index 5970e1cd884d..000000000000 --- a/offapi/com/sun/star/setup/makefile.mk +++ /dev/null @@ -1,74 +0,0 @@ -#************************************************************************* -# -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2000, 2010 Oracle and/or its affiliates. -# -# OpenOffice.org - a multi-platform office productivity suite -# -# This file is part of OpenOffice.org. -# -# OpenOffice.org is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License version 3 -# only, as published by the Free Software Foundation. -# -# OpenOffice.org is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License version 3 for more details -# (a copy is included in the LICENSE file that accompanied this code). -# -# You should have received a copy of the GNU Lesser General Public License -# version 3 along with OpenOffice.org. If not, see -# <http://www.openoffice.org/license.html> -# for a copy of the LGPLv3 License. -# -#************************************************************************* - -PRJ=..$/..$/..$/.. - -PRJNAME=offapi -TARGET=csssetup -PACKAGE=com$/sun$/star$/setup - -# --- Settings ----------------------------------------------------- -.INCLUDE : $(PRJ)$/util$/makefile.pmk - -# ------------------------------------------------------------------ - -IDLFILES=\ - UpdateType.idl \ - ActionType.idl \ - BaseAction.idl \ - CopyFileAction.idl \ - DeleteDirAction.idl \ - DeleteFileAction.idl \ - DeleteFolderAction.idl \ - DeleteFolderItemAction.idl \ - DownloadAction.idl \ - FontAction.idl \ - InstallEnvironment.idl \ - InstallResponse.idl \ - InstallType.idl \ - MakeDirAction.idl \ - MakeFolderAction.idl \ - MakeFolderItemAction.idl \ - MakeShortcutAction.idl \ - MirrorEntry.idl \ - ModuleInfo.idl \ - ModuleState.idl \ - OSType.idl \ - ProductRegistration.idl \ - ProfileItemAction.idl \ - Setup.idl \ - SizeInfo.idl \ - UnzipAction.idl \ - VersionIdentifier.idl \ - WindowsRegistryAction.idl \ - XSetup.idl - -# ------------------------------------------------------------------ - -.INCLUDE : target.mk -.INCLUDE : $(PRJ)$/util$/target.pmk - |