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 --- .../DevelopersGuide/Components/dialogcomponent/TestDialogHandler.idl | 2 +- odk/examples/OLE/activex/so_activex.idl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'odk') diff --git a/odk/examples/DevelopersGuide/Components/dialogcomponent/TestDialogHandler.idl b/odk/examples/DevelopersGuide/Components/dialogcomponent/TestDialogHandler.idl index 7196b173b4fa..cc2256e6aca1 100644 --- a/odk/examples/DevelopersGuide/Components/dialogcomponent/TestDialogHandler.idl +++ b/odk/examples/DevelopersGuide/Components/dialogcomponent/TestDialogHandler.idl @@ -34,7 +34,7 @@ #ifndef INCLUDED_COM_SUN_STAR_TEST_TESTDIALOGHANDLER_IDL #define INCLUDED_COM_SUN_STAR_TEST_TESTDIALOGHANDLER_IDL -#include "XTestDialogHandler.idl" +#include module com { module sun { module star { module test { service TestDialogHandler : XTestDialogHandler; diff --git a/odk/examples/OLE/activex/so_activex.idl b/odk/examples/OLE/activex/so_activex.idl index 545d5643569d..c64fa446e072 100644 --- a/odk/examples/OLE/activex/so_activex.idl +++ b/odk/examples/OLE/activex/so_activex.idl @@ -40,7 +40,7 @@ import "oaidl.idl"; import "ocidl.idl"; -#include "olectl.h" +#include [ -- cgit