summaryrefslogtreecommitdiff
path: root/basic/source
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2020-02-01 11:00:54 +0100
committerLuboš Luňák <l.lunak@collabora.com>2020-02-01 20:12:21 +0100
commit69e0d871ec1de2260f9213d3113464155eac173c (patch)
tree8e2d70bcd7eaef2c0dec275dd89050bf499e17b9 /basic/source
parent961f7e8ec8ef188c361b2b20b60b95e78ecccd33 (diff)
make update_pch also consider files in <module>/src/**/inc
With --enable-pch=full there's not much difference between a "public" header in <module>/inc and a private one in <module>/src/somewhere/inc . And since the script searches recursively, this apparently helps to find even more headers for lower pch levels. Change-Id: I8483d0aa5b4fea5a59107c20a8aa5f1ef694af0a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87799 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'basic/source')
-rw-r--r--basic/source/classes/sb.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/basic/source/classes/sb.cxx b/basic/source/classes/sb.cxx
index 12f2e2bea8c2..fb80efdcb39a 100644
--- a/basic/source/classes/sb.cxx
+++ b/basic/source/classes/sb.cxx
@@ -51,8 +51,7 @@
using namespace ::com::sun::star::script;
-
-#define RTLNAME "@SBRTL"
+#define SB_RTLNAME "@SBRTL"
// i#i68894#
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
@@ -935,7 +934,7 @@ StarBASIC::StarBASIC( StarBASIC* p, bool bIsDocBasic )
GetSbData()->pUnoFac.reset( new SbUnoFactory );
AddFactory( GetSbData()->pUnoFac.get() );
}
- pRtl = new SbiStdObject(RTLNAME, this );
+ pRtl = new SbiStdObject(SB_RTLNAME, this );
// Search via StarBasic is always global
SetFlag( SbxFlagBits::GlobalSearch );
pVBAGlobals = nullptr;
@@ -1276,7 +1275,7 @@ SbxVariable* StarBASIC::Find( const OUString& rName, SbxClassType t )
{
if( t == SbxClassType::DontCare || t == SbxClassType::Object )
{
- if( rName.equalsIgnoreAsciiCase( RTLNAME ) )
+ if( rName.equalsIgnoreAsciiCase( SB_RTLNAME ) )
{
pRes = pRtl.get();
}