summaryrefslogtreecommitdiff
path: root/basic/source/comp
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2017-10-09 17:04:39 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2017-10-10 07:43:46 +0200
commitdaf7c3e7329f343afdcfc72b3c3b88d6b23f0690 (patch)
tree1dd7093764cbc2cbcb954ff34736888bc65a1b2b /basic/source/comp
parentda7c1eb1c0a7d9e20ce6d147d428dba257b51152 (diff)
basic: consistently use "" and <> in include directives
Change-Id: I147c0e9b9b1e09af593f54799e45e1348cd40716 Reviewed-on: https://gerrit.libreoffice.org/43298 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'basic/source/comp')
-rw-r--r--basic/source/comp/basiccharclass.cxx2
-rw-r--r--basic/source/comp/buffer.cxx4
-rw-r--r--basic/source/comp/codegen.cxx6
-rw-r--r--basic/source/comp/dim.cxx4
-rw-r--r--basic/source/comp/exprgen.cxx6
-rw-r--r--basic/source/comp/exprnode.cxx6
-rw-r--r--basic/source/comp/exprtree.cxx4
-rw-r--r--basic/source/comp/io.cxx4
-rw-r--r--basic/source/comp/loops.cxx2
-rw-r--r--basic/source/comp/parser.cxx2
-rw-r--r--basic/source/comp/sbcomp.cxx6
-rw-r--r--basic/source/comp/scanner.cxx6
-rw-r--r--basic/source/comp/symtbl.cxx2
-rw-r--r--basic/source/comp/token.cxx6
14 files changed, 30 insertions, 30 deletions
diff --git a/basic/source/comp/basiccharclass.cxx b/basic/source/comp/basiccharclass.cxx
index ecc40a769bb8..e71d8ab827aa 100644
--- a/basic/source/comp/basiccharclass.cxx
+++ b/basic/source/comp/basiccharclass.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "basiccharclass.hxx"
+#include <basiccharclass.hxx>
#include <unotools/charclass.hxx>
#include <vcl/svapp.hxx>
diff --git a/basic/source/comp/buffer.cxx b/basic/source/comp/buffer.cxx
index ad7e5961835a..c863d92085bf 100644
--- a/basic/source/comp/buffer.cxx
+++ b/basic/source/comp/buffer.cxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "buffer.hxx"
-#include "parser.hxx"
+#include <buffer.hxx>
+#include <parser.hxx>
const static sal_uInt32 UP_LIMIT=0xFFFFFF00;
diff --git a/basic/source/comp/codegen.cxx b/basic/source/comp/codegen.cxx
index d16e9560e328..e1ad56d7efde 100644
--- a/basic/source/comp/codegen.cxx
+++ b/basic/source/comp/codegen.cxx
@@ -19,9 +19,9 @@
#include <basic/sbx.hxx>
-#include "image.hxx"
-#include "codegen.hxx"
-#include "parser.hxx"
+#include <image.hxx>
+#include <codegen.hxx>
+#include <parser.hxx>
#include <cstddef>
#include <limits>
#include <algorithm>
diff --git a/basic/source/comp/dim.cxx b/basic/source/comp/dim.cxx
index 73862b3bf26a..792041adc20c 100644
--- a/basic/source/comp/dim.cxx
+++ b/basic/source/comp/dim.cxx
@@ -18,8 +18,8 @@
*/
#include <basic/sbx.hxx>
-#include "sbunoobj.hxx"
-#include "parser.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 befb063cdde2..c46b2618611a 100644
--- a/basic/source/comp/exprgen.cxx
+++ b/basic/source/comp/exprgen.cxx
@@ -18,9 +18,9 @@
*/
-#include "codegen.hxx"
-#include "expr.hxx"
-#include "parser.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 cfde488b0900..a1ae40a4eacc 100644
--- a/basic/source/comp/exprnode.cxx
+++ b/basic/source/comp/exprnode.cxx
@@ -22,9 +22,9 @@
#include <algorithm>
#include <rtl/math.hxx>
-#include "codegen.hxx"
-#include "parser.hxx"
-#include "expr.hxx"
+#include <codegen.hxx>
+#include <parser.hxx>
+#include <expr.hxx>
SbiExprNode::SbiExprNode( SbiExprNode* l, SbiToken t, SbiExprNode* r ) :
diff --git a/basic/source/comp/exprtree.cxx b/basic/source/comp/exprtree.cxx
index 2643ffb5a856..43fac26a6e22 100644
--- a/basic/source/comp/exprtree.cxx
+++ b/basic/source/comp/exprtree.cxx
@@ -19,9 +19,9 @@
#include <memory>
-#include "parser.hxx"
+#include <parser.hxx>
#include <basic/sbx.hxx>
-#include "expr.hxx"
+#include <expr.hxx>
#include <o3tl/make_unique.hxx>
SbiExpression::SbiExpression( SbiParser* p, SbiExprType t,
diff --git a/basic/source/comp/io.cxx b/basic/source/comp/io.cxx
index d5954a0fe236..595b0c95bc61 100644
--- a/basic/source/comp/io.cxx
+++ b/basic/source/comp/io.cxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "parser.hxx"
-#include "iosys.hxx"
+#include <parser.hxx>
+#include <iosys.hxx>
#include <memory>
// test if there's an I/O channel
diff --git a/basic/source/comp/loops.cxx b/basic/source/comp/loops.cxx
index 4eaf4f86b7f7..ec20b76e71a7 100644
--- a/basic/source/comp/loops.cxx
+++ b/basic/source/comp/loops.cxx
@@ -18,7 +18,7 @@
*/
-#include "parser.hxx"
+#include <parser.hxx>
#include <memory>
// Single-line IF and Multiline IF
diff --git a/basic/source/comp/parser.cxx b/basic/source/comp/parser.cxx
index d4a33465c122..7d08a99b511e 100644
--- a/basic/source/comp/parser.cxx
+++ b/basic/source/comp/parser.cxx
@@ -18,7 +18,7 @@
*/
#include <basic/sbx.hxx>
-#include "parser.hxx"
+#include <parser.hxx>
#include <com/sun/star/script/ModuleType.hpp>
#include <svtools/miscopt.hxx>
#include <rtl/character.hxx>
diff --git a/basic/source/comp/sbcomp.cxx b/basic/source/comp/sbcomp.cxx
index 6e1bf2a8f8bc..bd789433be6f 100644
--- a/basic/source/comp/sbcomp.cxx
+++ b/basic/source/comp/sbcomp.cxx
@@ -19,9 +19,9 @@
#include <basic/sbx.hxx>
-#include "parser.hxx"
-#include "image.hxx"
-#include "sbobjmod.hxx"
+#include <parser.hxx>
+#include <image.hxx>
+#include <sbobjmod.hxx>
#include <svtools/miscopt.hxx>
#include <rtl/character.hxx>
#include <memory>
diff --git a/basic/source/comp/scanner.cxx b/basic/source/comp/scanner.cxx
index 0cf8ed49c6b3..07d739f29bc0 100644
--- a/basic/source/comp/scanner.cxx
+++ b/basic/source/comp/scanner.cxx
@@ -17,9 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "basiccharclass.hxx"
-#include "scanner.hxx"
-#include "sbintern.hxx"
+#include <basiccharclass.hxx>
+#include <scanner.hxx>
+#include <sbintern.hxx>
#include <i18nlangtag/lang.h>
#include <comphelper/processfactory.hxx>
diff --git a/basic/source/comp/symtbl.cxx b/basic/source/comp/symtbl.cxx
index 44684349b4e2..6d9afd861021 100644
--- a/basic/source/comp/symtbl.cxx
+++ b/basic/source/comp/symtbl.cxx
@@ -19,7 +19,7 @@
#include <memory>
-#include "parser.hxx"
+#include <parser.hxx>
#include <osl/diagnose.h>
diff --git a/basic/source/comp/token.cxx b/basic/source/comp/token.cxx
index 2b8a7f6eb53c..b5e2babb3181 100644
--- a/basic/source/comp/token.cxx
+++ b/basic/source/comp/token.cxx
@@ -21,9 +21,9 @@
#include <array>
#include <basic/sberrors.hxx>
-#include "sal/macros.h"
-#include "basiccharclass.hxx"
-#include "token.hxx"
+#include <sal/macros.h>
+#include <basiccharclass.hxx>
+#include <token.hxx>
struct TokenTable { SbiToken t; const char *s; };