From 753e9b3d45f5970ee77505ecf8a816e4e4c5389d Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 30 Jul 2012 20:42:13 +0200 Subject: udkapi, offapi: do not use #include "foo": Evidently on Windows, the newfangled ucpp handles #include "foo" differently from #include and treats it as a relative path, while the angle brackets always result in absolute paths. Since relative paths result in infinite rebuilds if make is invoked in a different directory, don't use #include "foo" in IDL files. Change-Id: Iedcda3a4be5542389a0be086f14541cda8dc5323 --- stoc/test/registry_tdprovider/types.idl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'stoc/test') diff --git a/stoc/test/registry_tdprovider/types.idl b/stoc/test/registry_tdprovider/types.idl index cdfe34eac739..dedd0b904c57 100644 --- a/stoc/test/registry_tdprovider/types.idl +++ b/stoc/test/registry_tdprovider/types.idl @@ -16,10 +16,10 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "com/sun/star/lang/WrappedTargetException.idl" -#include "com/sun/star/uno/Exception.idl" -#include "com/sun/star/uno/RuntimeException.idl" -#include "com/sun/star/uno/XInterface.idl" +#include +#include +#include +#include module test { module registrytdprovider { -- cgit