[Libreoffice-commits] core.git: basic/inc basic/qa basic/source

Mike Kaganski mike.kaganski at collabora.com
Tue Oct 10 05:44:06 UTC 2017


 basic/inc/sb.hxx                               |    2 +-
 basic/qa/cppunit/test_scanner.cxx              |    2 +-
 basic/source/basmgr/basicmanagerrepository.cxx |    6 +++---
 basic/source/basmgr/basmgr.cxx                 |    4 ++--
 basic/source/classes/errobject.cxx             |    6 +++---
 basic/source/classes/global.cxx                |    2 +-
 basic/source/classes/image.cxx                 |    4 ++--
 basic/source/classes/propacc.cxx               |    2 +-
 basic/source/classes/sb.cxx                    |   24 ++++++++++++------------
 basic/source/classes/sbintern.cxx              |   12 ++++++------
 basic/source/classes/sbunoobj.cxx              |    2 +-
 basic/source/classes/sbxmod.cxx                |   22 +++++++++++-----------
 basic/source/comp/basiccharclass.cxx           |    2 +-
 basic/source/comp/buffer.cxx                   |    4 ++--
 basic/source/comp/codegen.cxx                  |    6 +++---
 basic/source/comp/dim.cxx                      |    4 ++--
 basic/source/comp/exprgen.cxx                  |    6 +++---
 basic/source/comp/exprnode.cxx                 |    6 +++---
 basic/source/comp/exprtree.cxx                 |    4 ++--
 basic/source/comp/io.cxx                       |    4 ++--
 basic/source/comp/loops.cxx                    |    2 +-
 basic/source/comp/parser.cxx                   |    2 +-
 basic/source/comp/sbcomp.cxx                   |    6 +++---
 basic/source/comp/scanner.cxx                  |    6 +++---
 basic/source/comp/symtbl.cxx                   |    2 +-
 basic/source/comp/token.cxx                    |    6 +++---
 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                     |    2 +-
 basic/source/inc/opcodes.hxx                   |    2 +-
 basic/source/inc/parser.hxx                    |    6 +++---
 basic/source/inc/runtime.hxx                   |    2 +-
 basic/source/inc/sbintern.hxx                  |    2 +-
 basic/source/inc/scriptcont.hxx                |    2 +-
 basic/source/inc/token.hxx                     |    2 +-
 basic/source/runtime/basrdll.cxx               |    2 +-
 basic/source/runtime/inputbox.cxx              |    6 +++---
 basic/source/runtime/iosys.cxx                 |    6 +++---
 basic/source/runtime/methods.cxx               |   22 +++++++++++-----------
 basic/source/runtime/methods1.cxx              |   16 ++++++++--------
 basic/source/runtime/props.cxx                 |    8 ++++----
 basic/source/runtime/runtime.cxx               |   18 +++++++++---------
 basic/source/runtime/stdobj.cxx                |   10 +++++-----
 basic/source/runtime/stdobj1.cxx               |    4 ++--
 basic/source/sbx/sbxarray.cxx                  |    2 +-
 basic/source/sbx/sbxbase.cxx                   |    2 +-
 basic/source/sbx/sbxdate.cxx                   |    2 +-
 basic/source/sbx/sbxdbl.cxx                    |    2 +-
 basic/source/sbx/sbxscan.cxx                   |    8 ++++----
 basic/source/sbx/sbxstr.cxx                    |    2 +-
 basic/source/sbx/sbxvalue.cxx                  |    4 ++--
 basic/source/sbx/sbxvar.cxx                    |    4 ++--
 basic/source/uno/dlgcont.cxx                   |    2 +-
 basic/source/uno/namecont.cxx                  |    2 +-
 basic/source/uno/scriptcont.cxx                |    2 +-
 57 files changed, 151 insertions(+), 151 deletions(-)

New commits:
commit daf7c3e7329f343afdcfc72b3c3b88d6b23f0690
Author: Mike Kaganski <mike.kaganski at collabora.com>
Date:   Mon Oct 9 17:04:39 2017 +0300

    basic: consistently use "" and <> in include directives
    
    Change-Id: I147c0e9b9b1e09af593f54799e45e1348cd40716
    Reviewed-on: https://gerrit.libreoffice.org/43298
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Mike Kaganski <mike.kaganski at collabora.com>

diff --git a/basic/inc/sb.hxx b/basic/inc/sb.hxx
index ce78553c8071..191b37a854c9 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/qa/cppunit/test_scanner.cxx b/basic/qa/cppunit/test_scanner.cxx
index 1d6c7f37d4f2..3560938295f5 100644
--- a/basic/qa/cppunit/test_scanner.cxx
+++ b/basic/qa/cppunit/test_scanner.cxx
@@ -17,7 +17,7 @@
 #include <osl/process.h>
 #include <rtl/math.hxx>
 
-#include "scanner.hxx"
+#include <scanner.hxx>
 
 namespace
 {
diff --git a/basic/source/basmgr/basicmanagerrepository.cxx b/basic/source/basmgr/basicmanagerrepository.cxx
index be1e1ca4edb9..7140cf748a28 100644
--- a/basic/source/basmgr/basicmanagerrepository.cxx
+++ b/basic/source/basmgr/basicmanagerrepository.cxx
@@ -19,10 +19,10 @@
 
 #include <basic/basicmanagerrepository.hxx>
 #include <basic/basmgr.hxx>
-#include "scriptcont.hxx"
-#include "dlgcont.hxx"
+#include <scriptcont.hxx>
+#include <dlgcont.hxx>
 #include <basic/sbuno.hxx>
-#include "sbintern.hxx"
+#include <sbintern.hxx>
 
 #include <com/sun/star/document/XStorageBasedDocument.hpp>
 #include <com/sun/star/document/XEmbeddedScripts.hpp>
diff --git a/basic/source/basmgr/basmgr.cxx b/basic/source/basmgr/basmgr.cxx
index 211daeb8ccfa..24120034aecd 100644
--- a/basic/source/basmgr/basmgr.cxx
+++ b/basic/source/basmgr/basmgr.cxx
@@ -39,9 +39,9 @@
 
 #include <basic/sbuno.hxx>
 #include <basic/basmgr.hxx>
-#include "global.hxx"
+#include <global.hxx>
 #include <sbunoobj.hxx>
-#include "sbintern.hxx"
+#include <sbintern.hxx>
 
 #include <memory>
 #include <vector>
diff --git a/basic/source/classes/errobject.cxx b/basic/source/classes/errobject.cxx
index 63289c8f94d5..24f460ca675f 100644
--- a/basic/source/classes/errobject.cxx
+++ b/basic/source/classes/errobject.cxx
@@ -17,12 +17,12 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include "errobject.hxx"
+#include <errobject.hxx>
 
 #include <cppuhelper/implbase.hxx>
 #include <com/sun/star/script/XDefaultProperty.hpp>
-#include "sbintern.hxx"
-#include "runtime.hxx"
+#include <sbintern.hxx>
+#include <runtime.hxx>
 
 using namespace ::com::sun::star;
 using namespace ::ooo;
diff --git a/basic/source/classes/global.cxx b/basic/source/classes/global.cxx
index 8f5472daae66..1e72e242d94b 100644
--- a/basic/source/classes/global.cxx
+++ b/basic/source/classes/global.cxx
@@ -15,7 +15,7 @@
 #include <vcl/svapp.hxx>
 #include <vcl/settings.hxx>
 
-#include "global.hxx"
+#include <global.hxx>
 
 namespace
 {
diff --git a/basic/source/classes/image.cxx b/basic/source/classes/image.cxx
index d29cefc78beb..1be8c63d29d1 100644
--- a/basic/source/classes/image.cxx
+++ b/basic/source/classes/image.cxx
@@ -21,9 +21,9 @@
 #include <tools/tenccvt.hxx>
 #include <osl/thread.h>
 #include <basic/sbx.hxx>
-#include "sb.hxx"
+#include <sb.hxx>
 #include <string.h>
-#include "image.hxx"
+#include <image.hxx>
 #include <codegen.hxx>
 #include <memory>
 
diff --git a/basic/source/classes/propacc.cxx b/basic/source/classes/propacc.cxx
index 0e9cd5e5298c..8cc697a76441 100644
--- a/basic/source/classes/propacc.cxx
+++ b/basic/source/classes/propacc.cxx
@@ -18,7 +18,7 @@
  */
 
 
-#include "propacc.hxx"
+#include <propacc.hxx>
 
 #include <basic/sbstar.hxx>
 #include <basic/sbuno.hxx>
diff --git a/basic/source/classes/sb.cxx b/basic/source/classes/sb.cxx
index fcf8628f6eb9..1ce0e4b65b5b 100644
--- a/basic/source/classes/sb.cxx
+++ b/basic/source/classes/sb.cxx
@@ -17,29 +17,29 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include "sb.hxx"
+#include <sb.hxx>
 #include <tools/stream.hxx>
 #include <vcl/errinf.hxx>
 #include <comphelper/solarmutex.hxx>
 #include <basic/sbx.hxx>
 #include <vcl/svapp.hxx>
 #include <comphelper/processfactory.hxx>
-#include "image.hxx"
-#include "sbunoobj.hxx"
-#include "sbjsmeth.hxx"
-#include "sbjsmod.hxx"
-#include "sbintern.hxx"
-#include "runtime.hxx"
+#include <image.hxx>
+#include <sbunoobj.hxx>
+#include <sbjsmeth.hxx>
+#include <sbjsmod.hxx>
+#include <sbintern.hxx>
+#include <runtime.hxx>
 #include <basic/sbuno.hxx>
-#include "sbobjmod.hxx"
-#include "stdobj.hxx"
-#include "filefmt.hxx"
-#include "basic.hrc"
+#include <sbobjmod.hxx>
+#include <stdobj.hxx>
+#include <filefmt.hxx>
+#include <basic.hrc>
 #include <cppuhelper/implbase.hxx>
 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
 #include <com/sun/star/util/XCloseBroadcaster.hpp>
 #include <com/sun/star/util/XCloseListener.hpp>
-#include "errobject.hxx"
+#include <errobject.hxx>
 #include <memory>
 #include <unordered_map>
 
diff --git a/basic/source/classes/sbintern.cxx b/basic/source/classes/sbintern.cxx
index 371f1daad2b6..dc5d7b697fbe 100644
--- a/basic/source/classes/sbintern.cxx
+++ b/basic/source/classes/sbintern.cxx
@@ -17,12 +17,12 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include "sbintern.hxx"
-#include "sbunoobj.hxx"
-#include "token.hxx"
-#include "symtbl.hxx"
-#include "parser.hxx"
-#include "codegen.hxx"
+#include <sbintern.hxx>
+#include <sbunoobj.hxx>
+#include <token.hxx>
+#include <symtbl.hxx>
+#include <parser.hxx>
+#include <codegen.hxx>
 #include <basic/basmgr.hxx>
 
 SbiGlobals* SbiGlobals::pGlobals = nullptr;
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index 83a06ff0d370..0b63ea746e13 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -78,7 +78,7 @@
 #include <basic/sbuno.hxx>
 #include <basic/sberrors.hxx>
 #include <sbunoobj.hxx>
-#include "sbjsmod.hxx"
+#include <sbjsmod.hxx>
 #include <basic/basmgr.hxx>
 #include <sbintern.hxx>
 #include <runtime.hxx>
diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx
index 9491e60d9371..25b2cf418923 100644
--- a/basic/source/classes/sbxmod.cxx
+++ b/basic/source/classes/sbxmod.cxx
@@ -23,20 +23,20 @@
 #include <svl/SfxBroadcaster.hxx>
 #include <basic/sbx.hxx>
 #include <basic/sbuno.hxx>
-#include "sb.hxx"
+#include <sb.hxx>
 #include <sbjsmeth.hxx>
-#include "sbjsmod.hxx"
-#include "sbintern.hxx"
-#include "image.hxx"
-#include "opcodes.hxx"
-#include "runtime.hxx"
-#include "token.hxx"
-#include "sbunoobj.hxx"
+#include <sbjsmod.hxx>
+#include <sbintern.hxx>
+#include <image.hxx>
+#include <opcodes.hxx>
+#include <runtime.hxx>
+#include <token.hxx>
+#include <sbunoobj.hxx>
 
 #include <sal/log.hxx>
 
 #include <basic/basrdll.hxx>
-#include "sbobjmod.hxx"
+#include <sbobjmod.hxx>
 #include <basic/vbahelper.hxx>
 #include <cppuhelper/implbase.hxx>
 #include <unotools/eventcfg.hxx>
@@ -68,8 +68,8 @@
 #include <ooo/vba/VbQueryClose.hpp>
 #include <list>
 #include <memory>
-#include "sbxmod.hxx"
-#include "parser.hxx"
+#include <sbxmod.hxx>
+#include <parser.hxx>
 
 #include <limits>
 
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; };
 
diff --git a/basic/source/inc/codegen.hxx b/basic/source/inc/codegen.hxx
index 5a969d1f2cb7..5c23316de751 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 2218b29d2665..be3a36548529 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 65c4722e3319..a03e253a42e8 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 c50489175ba3..128009213360 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 f15e8c700b4f..81ad53e23ff8 100644
--- a/basic/source/inc/image.hxx
+++ b/basic/source/inc/image.hxx
@@ -20,7 +20,7 @@
 #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 <o3tl/typed_flags_set.hxx>
diff --git a/basic/source/inc/opcodes.hxx b/basic/source/inc/opcodes.hxx
index 1f10d2d84943..cb01cfc1264f 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 4ff5baf83518..ca7eb0a8bb8b 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/runtime.hxx b/basic/source/inc/runtime.hxx
index fd817d0ca935..64320ce6cee7 100644
--- a/basic/source/inc/runtime.hxx
+++ b/basic/source/inc/runtime.hxx
@@ -22,7 +22,7 @@
 
 #include <basic/sbx.hxx>
 
-#include "sb.hxx"
+#include <sb.hxx>
 
 #include <rtl/ustring.hxx>
 #include <com/sun/star/uno/Sequence.hxx>
diff --git a/basic/source/inc/sbintern.hxx b/basic/source/inc/sbintern.hxx
index 7b5dd97384e7..4ff2d7ad547c 100644
--- a/basic/source/inc/sbintern.hxx
+++ b/basic/source/inc/sbintern.hxx
@@ -23,7 +23,7 @@
 #include <basic/basicdllapi.h>
 #include <basic/sbxfac.hxx>
 #include <unotools/transliterationwrapper.hxx>
-#include "sb.hxx"
+#include <sb.hxx>
 
 namespace utl
 {
diff --git a/basic/source/inc/scriptcont.hxx b/basic/source/inc/scriptcont.hxx
index e727ecccd02a..58b26077e9ac 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 3f265cefb83e..fdb05a342325 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.
diff --git a/basic/source/runtime/basrdll.cxx b/basic/source/runtime/basrdll.cxx
index a8fadaa5a1af..d84e3953284e 100644
--- a/basic/source/runtime/basrdll.cxx
+++ b/basic/source/runtime/basrdll.cxx
@@ -27,7 +27,7 @@
 #include <basic/sbstar.hxx>
 #include <basic/basrdll.hxx>
 #include <unotools/resmgr.hxx>
-#include "strings.hrc"
+#include <strings.hrc>
 #include <sbxbase.hxx>
 
 struct BasicDLL::Impl
diff --git a/basic/source/runtime/inputbox.cxx b/basic/source/runtime/inputbox.cxx
index b24ecee56392..7f7730728649 100644
--- a/basic/source/runtime/inputbox.cxx
+++ b/basic/source/runtime/inputbox.cxx
@@ -23,9 +23,9 @@
 #include <vcl/edit.hxx>
 #include <vcl/dialog.hxx>
 #include <vcl/svapp.hxx>
-#include "runtime.hxx"
-#include "stdobj.hxx"
-#include "rtlproto.hxx"
+#include <runtime.hxx>
+#include <stdobj.hxx>
+#include <rtlproto.hxx>
 #include <memory>
 
 class SvRTLInputBox : public ModalDialog
diff --git a/basic/source/runtime/iosys.cxx b/basic/source/runtime/iosys.cxx
index 0fd1bb6d49bf..68f039a7b377 100644
--- a/basic/source/runtime/iosys.cxx
+++ b/basic/source/runtime/iosys.cxx
@@ -26,7 +26,7 @@
 #include <osl/file.hxx>
 #include <tools/urlobj.hxx>
 
-#include "runtime.hxx"
+#include <runtime.hxx>
 
 #include <rtl/byteseq.hxx>
 #include <rtl/textenc.h>
@@ -55,8 +55,8 @@ using namespace com::sun::star::ucb;
 using namespace com::sun::star::io;
 using namespace com::sun::star::bridge;
 
-#include "iosys.hxx"
-#include "sbintern.hxx"
+#include <iosys.hxx>
+#include <sbintern.hxx>
 
 
 class SbiInputDialog : public ModalDialog {
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index 377cb27f13a9..a4783ea78918 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -42,10 +42,10 @@
 #include <rtl/string.hxx>
 #include <rtl/strbuf.hxx>
 
-#include "runtime.hxx"
-#include "sbunoobj.hxx"
+#include <runtime.hxx>
+#include <sbunoobj.hxx>
 #include <osl/file.hxx>
-#include "errobject.hxx"
+#include <errobject.hxx>
 
 #include <comphelper/processfactory.hxx>
 #include <comphelper/string.hxx>
@@ -69,12 +69,12 @@ using namespace com::sun::star;
 using namespace com::sun::star::lang;
 using namespace com::sun::star::uno;
 
-#include "date.hxx"
-#include "stdobj.hxx"
-#include "sbstdobj.hxx"
-#include "rtlproto.hxx"
-#include "image.hxx"
-#include "iosys.hxx"
+#include <date.hxx>
+#include <stdobj.hxx>
+#include <sbstdobj.hxx>
+#include <rtlproto.hxx>
+#include <image.hxx>
+#include <iosys.hxx>
 #include "ddectrl.hxx"
 #include <sbintern.hxx>
 #include <basic/vbahelper.hxx>
@@ -85,8 +85,8 @@ using namespace com::sun::star::uno;
 #include <stdlib.h>
 #include <errno.h>
 
-#include "sbobjmod.hxx"
-#include "sbxmod.hxx"
+#include <sbobjmod.hxx>
+#include <sbxmod.hxx>
 
 #ifdef _WIN32
 #include <prewin.h>
diff --git a/basic/source/runtime/methods1.cxx b/basic/source/runtime/methods1.cxx
index a67de7407a6b..14548fbb0cf1 100644
--- a/basic/source/runtime/methods1.cxx
+++ b/basic/source/runtime/methods1.cxx
@@ -37,18 +37,18 @@
 #include <tools/fract.hxx>
 #include <osl/file.hxx>
 #include <vcl/jobset.hxx>
-#include "sbobjmod.hxx"
+#include <sbobjmod.hxx>
 #include <basic/sbuno.hxx>
 
-#include "date.hxx"
-#include "sbintern.hxx"
-#include "runtime.hxx"
-#include "stdobj.hxx"
-#include "rtlproto.hxx"
+#include <date.hxx>
+#include <sbintern.hxx>
+#include <runtime.hxx>
+#include <stdobj.hxx>
+#include <rtlproto.hxx>
 #include "dllmgr.hxx"
 #include <iosys.hxx>
-#include "sbunoobj.hxx"
-#include "propacc.hxx"
+#include <sbunoobj.hxx>
+#include <propacc.hxx>
 #include <sal/log.hxx>
 #include <eventatt.hxx>
 
diff --git a/basic/source/runtime/props.cxx b/basic/source/runtime/props.cxx
index a6bd4be345a4..d2d6d26f2425 100644
--- a/basic/source/runtime/props.cxx
+++ b/basic/source/runtime/props.cxx
@@ -18,10 +18,10 @@
  */
 
 
-#include "runtime.hxx"
-#include "stdobj.hxx"
-#include "rtlproto.hxx"
-#include "errobject.hxx"
+#include <runtime.hxx>
+#include <stdobj.hxx>
+#include <rtlproto.hxx>
+#include <errobject.hxx>
 #include <basegfx/numeric/ftools.hxx>
 
 
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index 40e282d70868..e9a0215b0442 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -53,18 +53,18 @@
 
 #include <basic/sbuno.hxx>
 
-#include "codegen.hxx"
+#include <codegen.hxx>
 #include "comenumwrapper.hxx"
 #include "ddectrl.hxx"
 #include "dllmgr.hxx"
-#include "errobject.hxx"
-#include "image.hxx"
-#include "iosys.hxx"
-#include "opcodes.hxx"
-#include "runtime.hxx"
-#include "sb.hxx"
-#include "sbintern.hxx"
-#include "sbunoobj.hxx"
+#include <errobject.hxx>
+#include <image.hxx>
+#include <iosys.hxx>
+#include <opcodes.hxx>
+#include <runtime.hxx>
+#include <sb.hxx>
+#include <sbintern.hxx>
+#include <sbunoobj.hxx>
 #include <basic/codecompletecache.hxx>
 #include <memory>
 
diff --git a/basic/source/runtime/stdobj.cxx b/basic/source/runtime/stdobj.cxx
index 0eac637f8fba..421008ea80df 100644
--- a/basic/source/runtime/stdobj.cxx
+++ b/basic/source/runtime/stdobj.cxx
@@ -18,12 +18,12 @@
  */
 
 
-#include "runtime.hxx"
-#include "stdobj.hxx"
-#include "sbstdobj.hxx"
+#include <runtime.hxx>
+#include <stdobj.hxx>
+#include <sbstdobj.hxx>
 #include <sal/macros.h>
-#include "rtlproto.hxx"
-#include "sbintern.hxx"
+#include <rtlproto.hxx>
+#include <sbintern.hxx>
 // The nArgs-field of a table entry is encrypted as follows:
 // At the moment it is assumed that properties don't need any
 // parameters!
diff --git a/basic/source/runtime/stdobj1.cxx b/basic/source/runtime/stdobj1.cxx
index 6777f682f9d6..6c464cd0af4f 100644
--- a/basic/source/runtime/stdobj1.cxx
+++ b/basic/source/runtime/stdobj1.cxx
@@ -20,8 +20,8 @@
 #include <vcl/wrkwin.hxx>
 #include <vcl/svapp.hxx>
 #include <svtools/transfer.hxx>
-#include "runtime.hxx"
-#include "sbstdobj.hxx"
+#include <runtime.hxx>
+#include <sbstdobj.hxx>
 
 #define ATTR_IMP_TYPE           1
 #define ATTR_IMP_WIDTH          2
diff --git a/basic/source/sbx/sbxarray.cxx b/basic/source/sbx/sbxarray.cxx
index b1a9c56b65a4..911a692c1def 100644
--- a/basic/source/sbx/sbxarray.cxx
+++ b/basic/source/sbx/sbxarray.cxx
@@ -22,7 +22,7 @@
 #include <tools/debug.hxx>
 #include <tools/stream.hxx>
 #include <basic/sbx.hxx>
-#include "runtime.hxx"
+#include <runtime.hxx>
 
 #include <boost/optional.hpp>
 
diff --git a/basic/source/sbx/sbxbase.cxx b/basic/source/sbx/sbxbase.cxx
index 379ecdd41e10..616d6edf556e 100644
--- a/basic/source/sbx/sbxbase.cxx
+++ b/basic/source/sbx/sbxbase.cxx
@@ -25,7 +25,7 @@
 
 #include <basic/sbx.hxx>
 #include <basic/sbxfac.hxx>
-#include "sbxbase.hxx"
+#include <sbxbase.hxx>
 
 #include <rtl/instance.hxx>
 #include <rtl/ustring.hxx>
diff --git a/basic/source/sbx/sbxdate.cxx b/basic/source/sbx/sbxdate.cxx
index 9dc76f3d78f4..342677d0fc0c 100644
--- a/basic/source/sbx/sbxdate.cxx
+++ b/basic/source/sbx/sbxdate.cxx
@@ -26,7 +26,7 @@
 #include <basic/sbx.hxx>
 #include <basic/sberrors.hxx>
 #include "sbxconv.hxx"
-#include "math.h"
+#include <math.h>
 #include <comphelper/processfactory.hxx>
 #include <memory>
 
diff --git a/basic/source/sbx/sbxdbl.cxx b/basic/source/sbx/sbxdbl.cxx
index ac753a5633cc..7fa8f5d2a18e 100644
--- a/basic/source/sbx/sbxdbl.cxx
+++ b/basic/source/sbx/sbxdbl.cxx
@@ -22,7 +22,7 @@
 #include <vcl/errcode.hxx>
 #include <basic/sbx.hxx>
 #include "sbxconv.hxx"
-#include "runtime.hxx"
+#include <runtime.hxx>
 
 double ImpGetDouble( const SbxValues* p )
 {
diff --git a/basic/source/sbx/sbxscan.cxx b/basic/source/sbx/sbxscan.cxx
index a2231f997610..a0be80e6383a 100644
--- a/basic/source/sbx/sbxscan.cxx
+++ b/basic/source/sbx/sbxscan.cxx
@@ -35,13 +35,13 @@
 #include <string.h>
 
 #include "sbxres.hxx"
-#include "sbxbase.hxx"
+#include <sbxbase.hxx>
 #include <basic/sbxfac.hxx>
 #include <basic/sbxform.hxx>
 
-#include "date.hxx"
-#include "runtime.hxx"
-#include "strings.hrc"
+#include <date.hxx>
+#include <runtime.hxx>
+#include <strings.hrc>
 
 #include <rtl/strbuf.hxx>
 #include <rtl/character.hxx>
diff --git a/basic/source/sbx/sbxstr.cxx b/basic/source/sbx/sbxstr.cxx
index 61c85fcd2f88..96ea1fc40507 100644
--- a/basic/source/sbx/sbxstr.cxx
+++ b/basic/source/sbx/sbxstr.cxx
@@ -23,7 +23,7 @@
 #include <basic/sbx.hxx>
 #include "sbxconv.hxx"
 #include "sbxres.hxx"
-#include "runtime.hxx"
+#include <runtime.hxx>
 #include <rtl/ustrbuf.hxx>
 #include <memory>
 
diff --git a/basic/source/sbx/sbxvalue.cxx b/basic/source/sbx/sbxvalue.cxx
index a754e1f13610..2d66ebe886ee 100644
--- a/basic/source/sbx/sbxvalue.cxx
+++ b/basic/source/sbx/sbxvalue.cxx
@@ -24,9 +24,9 @@
 #include <tools/stream.hxx>
 
 #include <basic/sbx.hxx>
-#include "sbunoobj.hxx"
+#include <sbunoobj.hxx>
 #include "sbxconv.hxx"
-#include "runtime.hxx"
+#include <runtime.hxx>
 
 
 ///////////////////////////// constructors
diff --git a/basic/source/sbx/sbxvar.cxx b/basic/source/sbx/sbxvar.cxx
index 5da7a1667242..6c506e88cff6 100644
--- a/basic/source/sbx/sbxvar.cxx
+++ b/basic/source/sbx/sbxvar.cxx
@@ -24,10 +24,10 @@
 #include <svl/SfxBroadcaster.hxx>
 
 #include <basic/sbx.hxx>
-#include "runtime.hxx"
+#include <runtime.hxx>
 #include "sbxres.hxx"
 #include "sbxconv.hxx"
-#include "sbunoobj.hxx"
+#include <sbunoobj.hxx>
 #include <math.h>
 #include <rtl/character.hxx>
 
diff --git a/basic/source/uno/dlgcont.cxx b/basic/source/uno/dlgcont.cxx
index a30f822a3c44..df2fb962a2aa 100644
--- a/basic/source/uno/dlgcont.cxx
+++ b/basic/source/uno/dlgcont.cxx
@@ -31,7 +31,7 @@
 #include <com/sun/star/resource/StringResourceWithStorage.hpp>
 #include <com/sun/star/resource/StringResourceWithLocation.hpp>
 #include <com/sun/star/document/GraphicObjectResolver.hpp>
-#include "dlgcont.hxx"
+#include <dlgcont.hxx>
 #include <comphelper/processfactory.hxx>
 #include <unotools/streamwrap.hxx>
 
diff --git a/basic/source/uno/namecont.cxx b/basic/source/uno/namecont.cxx
index fb26916676f6..4ac32587ec97 100644
--- a/basic/source/uno/namecont.cxx
+++ b/basic/source/uno/namecont.cxx
@@ -39,7 +39,7 @@
 #include <comphelper/anytostring.hxx>
 #include <comphelper/sequence.hxx>
 
-#include "namecont.hxx"
+#include <namecont.hxx>
 #include <basic/basicmanagerrepository.hxx>
 #include <tools/diagnose_ex.h>
 #include <tools/urlobj.hxx>
diff --git a/basic/source/uno/scriptcont.cxx b/basic/source/uno/scriptcont.cxx
index 9cfea4d879b8..e31455eed8cb 100644
--- a/basic/source/uno/scriptcont.cxx
+++ b/basic/source/uno/scriptcont.cxx
@@ -17,7 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include "scriptcont.hxx"
+#include <scriptcont.hxx>
 #include <filefmt.hxx>
 #include <com/sun/star/container/XNameContainer.hpp>
 #include <com/sun/star/packages/WrongPasswordException.hpp>


More information about the Libreoffice-commits mailing list