summaryrefslogtreecommitdiff
path: root/basctl/source
diff options
context:
space:
mode:
authorMalte Timmermann [mt] <malte.timmermann@sun.com>2010-07-02 13:17:39 +0200
committerMalte Timmermann [mt] <malte.timmermann@sun.com>2010-07-02 13:17:39 +0200
commit2338e963493fef9009f3d58efa9c46cd47425e10 (patch)
tree4f9aa602b60bdf03552482e8a4867f0cd058748b /basctl/source
parent68a29136f3eaf0e57e640900a46f420dc5c4a111 (diff)
parentc04b3821d6d9bb01ea2520629175510e816cfd88 (diff)
codecleanup02: merge with DEV300_m84
Diffstat (limited to 'basctl/source')
-rw-r--r--basctl/source/basicide/scriptdocument.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/basctl/source/basicide/scriptdocument.cxx b/basctl/source/basicide/scriptdocument.cxx
index b85ac9216..5fc34d9f7 100644
--- a/basctl/source/basicide/scriptdocument.cxx
+++ b/basctl/source/basicide/scriptdocument.cxx
@@ -1016,8 +1016,11 @@ namespace basctl
::rtl::OUString aSearchURL1( RTL_CONSTASCII_USTRINGPARAM( "share/basic" ) );
::rtl::OUString aSearchURL2( RTL_CONSTASCII_USTRINGPARAM( "share/uno_packages" ) );
- if( aCanonicalFileURL.indexOf( aSearchURL1 ) != -1 || aCanonicalFileURL.indexOf( aSearchURL2 ) != -1 )
- bIsShared = true;
+ ::rtl::OUString aSearchURL3( RTL_CONSTASCII_USTRINGPARAM( "share/extensions" ) );
+ if( aCanonicalFileURL.indexOf( aSearchURL1 ) != -1 ||
+ aCanonicalFileURL.indexOf( aSearchURL2 ) != -1 ||
+ aCanonicalFileURL.indexOf( aSearchURL3 ) != -1 )
+ bIsShared = true;
}
}
catch( const Exception& )