From d4a25418b32bcc7b8ecd80c24a799a7b56b494fb Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 23 Oct 2017 22:44:41 +0200 Subject: [PATCH] loplugin:includeform: basic Change-Id: I6fbba5c4619eec7ae03fed65a18974faa0f190af --- basic/inc/sb.hxx | 2 +- basic/source/inc/codegen.hxx | 4 ++-- basic/source/inc/dlgcont.hxx | 2 +- basic/source/inc/errobject.hxx | 2 +- basic/source/inc/expr.hxx | 4 ++-- basic/source/inc/image.hxx | 4 ++-- basic/source/inc/opcodes.hxx | 2 +- basic/source/inc/parser.hxx | 6 +++--- basic/source/inc/scriptcont.hxx | 2 +- 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 #include -#include +#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 -#include +#include "opcodes.hxx" +#include "buffer.hxx" #include 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 +#include "namecont.hxx" #include #include 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 +#include "sbunoobj.hxx" #include 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 -#include -#include +#include "opcodes.hxx" +#include "token.hxx" #include 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 +#include "sbintern.hxx" #include -#include +#include "filefmt.hxx" #include // 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 +#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 -#include -#include +#include "expr.hxx" +#include "codegen.hxx" +#include "symtbl.hxx" #include 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 +#include "namecont.hxx" #include #include #include 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 +#include "scanner.hxx" #include // The tokenizer is stand-alone, i. e. he can be used from everywhere.