diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-07-30 20:42:13 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-07-30 20:49:09 +0200 |
commit | 753e9b3d45f5970ee77505ecf8a816e4e4c5389d (patch) | |
tree | af018ab52009c6236c549e7263aabc1c99c9976b /odk | |
parent | 6e60ee677ebbb47ac22d4cb18925afb1fd7e6c9f (diff) |
udkapi, offapi: do not use #include "foo":
Evidently on Windows, the newfangled ucpp handles #include "foo"
differently from #include <foo> 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
Diffstat (limited to 'odk')
-rw-r--r-- | odk/examples/DevelopersGuide/Components/dialogcomponent/TestDialogHandler.idl | 2 | ||||
-rw-r--r-- | odk/examples/OLE/activex/so_activex.idl | 2 |
2 files changed, 2 insertions, 2 deletions
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 <XTestDialogHandler.idl> 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 <olectl.h> [ |