summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2015-05-17 10:08:59 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-05-17 10:08:59 +0200
commit539ba642d738b62f62095296a1bff2621a421e8e (patch)
tree29594f39af0d92e28b78c964536a6d2aebb76750 /basic
parent89a0763e6de4939bde1bfa149e81c2cdfc24f1de (diff)
remove unnecessary header file
Change-Id: I3b86a54a773341be7e7e69e88c59dc531ea49c5b
Diffstat (limited to 'basic')
-rw-r--r--basic/source/classes/sbxmod.cxx2
-rw-r--r--basic/source/comp/buffer.cxx2
-rw-r--r--basic/source/comp/codegen.cxx3
-rw-r--r--basic/source/comp/dim.cxx2
-rw-r--r--basic/source/comp/exprgen.cxx3
-rw-r--r--basic/source/comp/exprnode.cxx3
-rw-r--r--basic/source/comp/exprtree.cxx2
-rw-r--r--basic/source/comp/io.cxx2
-rw-r--r--basic/source/comp/loops.cxx2
-rw-r--r--basic/source/comp/parser.cxx2
-rw-r--r--basic/source/comp/sbcomp.cxx2
-rw-r--r--basic/source/comp/scanner.cxx3
-rw-r--r--basic/source/comp/symtbl.cxx2
-rw-r--r--basic/source/comp/token.cxx2
-rw-r--r--basic/source/inc/sbcomp.hxx32
15 files changed, 18 insertions, 46 deletions
diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx
index 502186c14d93..7fb9fb727179 100644
--- a/basic/source/classes/sbxmod.cxx
+++ b/basic/source/classes/sbxmod.cxx
@@ -75,8 +75,8 @@
#include <com/sun/star/awt/XControl.hpp>
#include <comphelper/anytostring.hxx>
#include <ooo/vba/VbQueryClose.hpp>
-#include "sbcomp.hxx"
#include "sbxmod.hxx"
+#include "parser.hxx"
using namespace com::sun::star;
using namespace com::sun::star::lang;
diff --git a/basic/source/comp/buffer.cxx b/basic/source/comp/buffer.cxx
index 870f299701d9..a21ad03358a6 100644
--- a/basic/source/comp/buffer.cxx
+++ b/basic/source/comp/buffer.cxx
@@ -19,7 +19,7 @@
#include <osl/thread.h>
#include "buffer.hxx"
-#include "sbcomp.hxx"
+#include "parser.hxx"
const static sal_uInt32 UP_LIMIT=0xFFFFFF00L;
diff --git a/basic/source/comp/codegen.cxx b/basic/source/comp/codegen.cxx
index 691fd9a79e64..332bb7b91517 100644
--- a/basic/source/comp/codegen.cxx
+++ b/basic/source/comp/codegen.cxx
@@ -19,8 +19,9 @@
#include <basic/sbx.hxx>
-#include "sbcomp.hxx"
#include "image.hxx"
+#include "codegen.hxx"
+#include "parser.hxx"
#include <limits>
#include <algorithm>
#include <osl/diagnose.h>
diff --git a/basic/source/comp/dim.cxx b/basic/source/comp/dim.cxx
index 27ebb4d6ec29..e0366f88e089 100644
--- a/basic/source/comp/dim.cxx
+++ b/basic/source/comp/dim.cxx
@@ -18,8 +18,8 @@
*/
#include <basic/sbx.hxx>
-#include "sbcomp.hxx"
#include "sbunoobj.hxx"
+#include "parser.hxx"
#include <svtools/miscopt.hxx>
#include <osl/diagnose.h>
#include <com/sun/star/reflection/theCoreReflection.hpp>
diff --git a/basic/source/comp/exprgen.cxx b/basic/source/comp/exprgen.cxx
index 85259806c6ef..22e59bb2424f 100644
--- a/basic/source/comp/exprgen.cxx
+++ b/basic/source/comp/exprgen.cxx
@@ -18,8 +18,9 @@
*/
-#include "sbcomp.hxx"
+#include "codegen.hxx"
#include "expr.hxx"
+#include "parser.hxx"
// Transform table for token operators and opcodes
diff --git a/basic/source/comp/exprnode.cxx b/basic/source/comp/exprnode.cxx
index 53235fb7b511..2ddbc3383338 100644
--- a/basic/source/comp/exprnode.cxx
+++ b/basic/source/comp/exprnode.cxx
@@ -21,7 +21,8 @@
#include <math.h>
#include <rtl/math.hxx>
-#include "sbcomp.hxx"
+#include "codegen.hxx"
+#include "parser.hxx"
#include "expr.hxx"
diff --git a/basic/source/comp/exprtree.cxx b/basic/source/comp/exprtree.cxx
index 14c6cc65f97b..2e133b88c487 100644
--- a/basic/source/comp/exprtree.cxx
+++ b/basic/source/comp/exprtree.cxx
@@ -18,7 +18,7 @@
*/
-#include "sbcomp.hxx"
+#include "parser.hxx"
#include <basic/sbx.hxx>
#include "expr.hxx"
diff --git a/basic/source/comp/io.cxx b/basic/source/comp/io.cxx
index 2265ed530649..484bcea40510 100644
--- a/basic/source/comp/io.cxx
+++ b/basic/source/comp/io.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sbcomp.hxx"
+#include "parser.hxx"
#include "iosys.hxx"
#include <boost/scoped_ptr.hpp>
diff --git a/basic/source/comp/loops.cxx b/basic/source/comp/loops.cxx
index abd71e460ea2..b545ae7e69ae 100644
--- a/basic/source/comp/loops.cxx
+++ b/basic/source/comp/loops.cxx
@@ -18,7 +18,7 @@
*/
-#include "sbcomp.hxx"
+#include "parser.hxx"
#include <boost/scoped_ptr.hpp>
// Single-line IF and Multiline IF
diff --git a/basic/source/comp/parser.cxx b/basic/source/comp/parser.cxx
index faafb0d5eb22..13ed16e19b4c 100644
--- a/basic/source/comp/parser.cxx
+++ b/basic/source/comp/parser.cxx
@@ -18,7 +18,7 @@
*/
#include <basic/sbx.hxx>
-#include "sbcomp.hxx"
+#include "parser.hxx"
#include <osl/diagnose.h>
#include <com/sun/star/script/ModuleType.hpp>
#include <svtools/miscopt.hxx>
diff --git a/basic/source/comp/sbcomp.cxx b/basic/source/comp/sbcomp.cxx
index 99dc47890626..0c7dc6d6223f 100644
--- a/basic/source/comp/sbcomp.cxx
+++ b/basic/source/comp/sbcomp.cxx
@@ -19,7 +19,7 @@
#include <basic/sbx.hxx>
-#include "sbcomp.hxx"
+#include "parser.hxx"
#include "image.hxx"
#include "sbobjmod.hxx"
#include <svtools/miscopt.hxx>
diff --git a/basic/source/comp/scanner.cxx b/basic/source/comp/scanner.cxx
index 2e20a0e7f25b..ced5ac0de88f 100644
--- a/basic/source/comp/scanner.cxx
+++ b/basic/source/comp/scanner.cxx
@@ -18,7 +18,8 @@
*/
#include "basiccharclass.hxx"
-#include "sbcomp.hxx"
+#include "scanner.hxx"
+#include "sbintern.hxx"
#include <vcl/svapp.hxx>
diff --git a/basic/source/comp/symtbl.cxx b/basic/source/comp/symtbl.cxx
index bb094e6079cf..b30173fb48ff 100644
--- a/basic/source/comp/symtbl.cxx
+++ b/basic/source/comp/symtbl.cxx
@@ -18,7 +18,7 @@
*/
-#include "sbcomp.hxx"
+#include "parser.hxx"
#include <osl/diagnose.h>
diff --git a/basic/source/comp/token.cxx b/basic/source/comp/token.cxx
index e49b2ae3155b..eec2f4ea4a1c 100644
--- a/basic/source/comp/token.cxx
+++ b/basic/source/comp/token.cxx
@@ -19,7 +19,7 @@
#include "basiccharclass.hxx"
-#include "sbcomp.hxx"
+#include "token.hxx"
struct TokenTable { SbiToken t; const char *s; };
diff --git a/basic/source/inc/sbcomp.hxx b/basic/source/inc/sbcomp.hxx
deleted file mode 100644
index 0ca6d4a93f96..000000000000
--- a/basic/source/inc/sbcomp.hxx
+++ /dev/null
@@ -1,32 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef INCLUDED_BASIC_SOURCE_INC_SBCOMP_HXX
-#define INCLUDED_BASIC_SOURCE_INC_SBCOMP_HXX
-
-// I've taken the following from the new file by MD! (MT)
-#include "sbintern.hxx"
-#include "token.hxx"
-#include "symtbl.hxx"
-#include "parser.hxx"
-#include "codegen.hxx"
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */