diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-10-23 22:44:41 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-10-23 22:46:13 +0200 |
commit | d4a25418b32bcc7b8ecd80c24a799a7b56b494fb (patch) | |
tree | ec300155ad7f9e171d5366e744f5d58f707f2fc7 /basic | |
parent | 8568732c0f6f8e4b69125a988a4987044666993a (diff) |
loplugin:includeform: basic
Change-Id: I6fbba5c4619eec7ae03fed65a18974faa0f190af
Diffstat (limited to 'basic')
-rw-r--r-- | basic/inc/sb.hxx | 2 | ||||
-rw-r--r-- | basic/source/inc/codegen.hxx | 4 | ||||
-rw-r--r-- | basic/source/inc/dlgcont.hxx | 2 | ||||
-rw-r--r-- | basic/source/inc/errobject.hxx | 2 | ||||
-rw-r--r-- | basic/source/inc/expr.hxx | 4 | ||||
-rw-r--r-- | basic/source/inc/image.hxx | 4 | ||||
-rw-r--r-- | basic/source/inc/opcodes.hxx | 2 | ||||
-rw-r--r-- | basic/source/inc/parser.hxx | 6 | ||||
-rw-r--r-- | basic/source/inc/scriptcont.hxx | 2 | ||||
-rw-r--r-- | basic/source/inc/token.hxx | 2 |
10 files changed, 15 insertions, 15 deletions
diff --git a/basic/inc/sb.hxx b/basic/inc/sb.hxx index 191b37a854c9..ce78553c8071 100644 --- a/basic/inc/sb.hxx +++ b/basic/inc/sb.hxx @@ -26,7 +26,7 @@ #include <basic/sbmod.hxx> #include <basic/sbstar.hxx> -#include <sbprop.hxx> +#include "sbprop.hxx" // create object from user-type (+StringID+StringID) SbxObject* createUserTypeImpl( const OUString& rClassName ); diff --git a/basic/source/inc/codegen.hxx b/basic/source/inc/codegen.hxx index 5c23316de751..5a969d1f2cb7 100644 --- a/basic/source/inc/codegen.hxx +++ b/basic/source/inc/codegen.hxx @@ -22,8 +22,8 @@ class SbiParser; class SbModule; -#include <opcodes.hxx> -#include <buffer.hxx> +#include "opcodes.hxx" +#include "buffer.hxx" #include <basic/codecompletecache.hxx> class SbiCodeGen { diff --git a/basic/source/inc/dlgcont.hxx b/basic/source/inc/dlgcont.hxx index be3a36548529..2218b29d2665 100644 --- a/basic/source/inc/dlgcont.hxx +++ b/basic/source/inc/dlgcont.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_BASIC_SOURCE_INC_DLGCONT_HXX #define INCLUDED_BASIC_SOURCE_INC_DLGCONT_HXX -#include <namecont.hxx> +#include "namecont.hxx" #include <com/sun/star/resource/XStringResourceSupplier.hpp> #include <com/sun/star/resource/XStringResourcePersistence.hpp> diff --git a/basic/source/inc/errobject.hxx b/basic/source/inc/errobject.hxx index a03e253a42e8..65c4722e3319 100644 --- a/basic/source/inc/errobject.hxx +++ b/basic/source/inc/errobject.hxx @@ -19,7 +19,7 @@ #ifndef INCLUDED_BASIC_SOURCE_INC_ERROBJECT_HXX #define INCLUDED_BASIC_SOURCE_INC_ERROBJECT_HXX -#include <sbunoobj.hxx> +#include "sbunoobj.hxx" #include <ooo/vba/XErrObject.hpp> diff --git a/basic/source/inc/expr.hxx b/basic/source/inc/expr.hxx index 128009213360..c50489175ba3 100644 --- a/basic/source/inc/expr.hxx +++ b/basic/source/inc/expr.hxx @@ -22,8 +22,8 @@ #include <memory> -#include <opcodes.hxx> -#include <token.hxx> +#include "opcodes.hxx" +#include "token.hxx" #include <vector> class SbiExprNode; diff --git a/basic/source/inc/image.hxx b/basic/source/inc/image.hxx index 81ad53e23ff8..404e411c8fe0 100644 --- a/basic/source/inc/image.hxx +++ b/basic/source/inc/image.hxx @@ -20,9 +20,9 @@ #ifndef INCLUDED_BASIC_SOURCE_INC_IMAGE_HXX #define INCLUDED_BASIC_SOURCE_INC_IMAGE_HXX -#include <sbintern.hxx> +#include "sbintern.hxx" #include <rtl/ustring.hxx> -#include <filefmt.hxx> +#include "filefmt.hxx" #include <o3tl/typed_flags_set.hxx> // This class reads in the image that's been produced by the compiler diff --git a/basic/source/inc/opcodes.hxx b/basic/source/inc/opcodes.hxx index cb01cfc1264f..1f10d2d84943 100644 --- a/basic/source/inc/opcodes.hxx +++ b/basic/source/inc/opcodes.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_BASIC_SOURCE_INC_OPCODES_HXX #define INCLUDED_BASIC_SOURCE_INC_OPCODES_HXX -#include <sbintern.hxx> +#include "sbintern.hxx" // An opcode can have a length of 1, 3 or 5 bytes, // depending on its numeric value (see below). diff --git a/basic/source/inc/parser.hxx b/basic/source/inc/parser.hxx index ca7eb0a8bb8b..4ff5baf83518 100644 --- a/basic/source/inc/parser.hxx +++ b/basic/source/inc/parser.hxx @@ -20,9 +20,9 @@ #ifndef INCLUDED_BASIC_SOURCE_INC_PARSER_HXX #define INCLUDED_BASIC_SOURCE_INC_PARSER_HXX -#include <expr.hxx> -#include <codegen.hxx> -#include <symtbl.hxx> +#include "expr.hxx" +#include "codegen.hxx" +#include "symtbl.hxx" #include <vector> diff --git a/basic/source/inc/scriptcont.hxx b/basic/source/inc/scriptcont.hxx index 1b0831a7701e..33086a006e09 100644 --- a/basic/source/inc/scriptcont.hxx +++ b/basic/source/inc/scriptcont.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_BASIC_SOURCE_INC_SCRIPTCONT_HXX #define INCLUDED_BASIC_SOURCE_INC_SCRIPTCONT_HXX -#include <namecont.hxx> +#include "namecont.hxx" #include <basic/basmgr.hxx> #include <com/sun/star/script/vba/XVBAModuleInfo.hpp> #include <comphelper/uno3.hxx> diff --git a/basic/source/inc/token.hxx b/basic/source/inc/token.hxx index fdb05a342325..3f265cefb83e 100644 --- a/basic/source/inc/token.hxx +++ b/basic/source/inc/token.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_BASIC_SOURCE_INC_TOKEN_HXX #define INCLUDED_BASIC_SOURCE_INC_TOKEN_HXX -#include <scanner.hxx> +#include "scanner.hxx" #include <basic/sbdef.hxx> // The tokenizer is stand-alone, i. e. he can be used from everywhere. |