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 /cppu/qa | |
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 'cppu/qa')
-rw-r--r-- | cppu/qa/cppumaker/types.idl | 16 | ||||
-rw-r--r-- | cppu/qa/types.idl | 4 |
2 files changed, 10 insertions, 10 deletions
diff --git a/cppu/qa/cppumaker/types.idl b/cppu/qa/cppumaker/types.idl index b30996cf05a1..da5aa8fe62cd 100644 --- a/cppu/qa/cppumaker/types.idl +++ b/cppu/qa/cppumaker/types.idl @@ -18,14 +18,14 @@ /*TODO: Do not depend on types for which C++ header files are only generated later in the build process in offuh: */ -#include "com/sun/star/lang/ClassNotFoundException.idl" -#include "com/sun/star/lang/IllegalAccessException.idl" -#include "com/sun/star/lang/Locale.idl" -#include "com/sun/star/uno/DeploymentException.idl" -#include "com/sun/star/uno/Exception.idl" -#include "com/sun/star/uno/RuntimeException.idl" -#include "com/sun/star/uno/XInterface.idl" -#include "com/sun/star/uno/XNamingService.idl" +#include <com/sun/star/lang/ClassNotFoundException.idl> +#include <com/sun/star/lang/IllegalAccessException.idl> +#include <com/sun/star/lang/Locale.idl> +#include <com/sun/star/uno/DeploymentException.idl> +#include <com/sun/star/uno/Exception.idl> +#include <com/sun/star/uno/RuntimeException.idl> +#include <com/sun/star/uno/XInterface.idl> +#include <com/sun/star/uno/XNamingService.idl> singleton FILE: com::sun::star::uno::XInterface; singleton lconv: com::sun::star::uno::XInterface; diff --git a/cppu/qa/types.idl b/cppu/qa/types.idl index 8e1cc15e0ef5..8b0ce5527271 100644 --- a/cppu/qa/types.idl +++ b/cppu/qa/types.idl @@ -16,8 +16,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "com/sun/star/uno/Exception.idl" -#include "com/sun/star/uno/XInterface.idl" +#include <com/sun/star/uno/Exception.idl> +#include <com/sun/star/uno/XInterface.idl> enum Enum1 { M0, M1, M2 }; |