summaryrefslogtreecommitdiff
path: root/source/text/shared
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-07-22 10:12:39 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-07-22 10:14:02 +0100
commitf9ce693a67d940f48f5f9c7e2a76213cc97c092c (patch)
tree0aed7113e925f429df53bcd60f78b1cec46a0fd2 /source/text/shared
parent464cbfaaa198f58af8cb2c347f4367408464fc2e (diff)
connect macro migration tabpages to help
Change-Id: I2ab17e0790d3b032bc664051e190d31d3f2d7bac
Diffstat (limited to 'source/text/shared')
-rw-r--r--source/text/shared/explorer/database/migrate_macros.xhp3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/text/shared/explorer/database/migrate_macros.xhp b/source/text/shared/explorer/database/migrate_macros.xhp
index 9e54904b0c..dd2b688d77 100644
--- a/source/text/shared/explorer/database/migrate_macros.xhp
+++ b/source/text/shared/explorer/database/migrate_macros.xhp
@@ -33,6 +33,9 @@
<bookmark_value>macros;attaching new (Base)</bookmark_value>
<bookmark_value>migrating macros (Base)</bookmark_value>
</bookmark><comment>MW added 2 index entries</comment>
+<bookmark xml-lang="en-US" branch="hid/dbaccess/ui/prepagepage/PreparePage" id="bm_id0224200911450173" localize="false"/>
+<bookmark xml-lang="en-US" branch="hid/dbaccess/ui/summarypage/SummaryPage" id="bm_id0224200911450174" localize="false"/>
+<bookmark xml-lang="en-US" branch="hid/dbaccess/ui/migratepage/MigratePage" id="bm_id0224200911450175" localize="false"/>
<bookmark xml-lang="en-US" branch="hid/dbaccess/ui/backuppage/BackupPage" id="bm_id022420091141366" localize="false"/>
<paragraph xml-lang="en-US" id="hd_id0112200902353472" role="heading" level="1" l10n="NEW"><link href="text/shared/explorer/database/migrate_macros.xhp">Migrate Macros</link></paragraph>
<bookmark xml-lang="en-US" branch="hid/.uno:DBMigrateScripts" id="bm_id0224200911384751" localize="false"/>
libreoffice-24-2-7 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/datamembershadow.cxx
AgeCommit message (Collapse)Author
2022-02-17Bump compiler plugins Clang baseline to 12.0.1Stephan Bergmann
...as discussed in the mail thread starting at <https://lists.freedesktop.org/archives/libreoffice/2020-November/086234.html> "Bump --enable-compiler-plugins Clang baseline?" (and now picked up again at <https://lists.freedesktop.org/archives/libreoffice/2022-February/088459.html> "Re: Bump --enable-compiler-plugins Clang baseline?"), and clean up compilerplugins/clang/ accordingly Change-Id: I5e81c6fdcc363aeefd6227606225b526fdf7ac16 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129989 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-10-08better name for a function in compilerpluginsLuboš Luňák
The function is not just about a spelling location. Change-Id: I96e9e9ef7e27a9763397b4b86473c1c30d0e3eeb Reviewed-on: https://gerrit.libreoffice.org/80381 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2019-03-12make (some) clang plugins share the same RecursiveASTVisitorLuboš Luňák
Each plugin currently uses its own recursive AST run, which adds up. This patch adds another shared plugin which internally contains all (suitable) plugins and dispatches to them from the same one recursive run. This patch converts ~25 plugins and for starmath's accessibility.cxx reduces clang build time from 5.43s to 5.14s (and it's 4.39s without any plugins). As there are almost 50 more plugins to go, this can theoretically result in 4.56s final time, although probably not all plugins can be that easily converted, if at all. This mostly requires very little change in many plugins (see e.g. BadStatics), some even work without any functionality change (e.g. CharRightShift). Traverse* calls require some changes but are often not that difficult. WalkUp* probably can't be supported, although some plugins can(?) possibly be adjusted to not rely on them. And of course some plugins can be left as they are, using their own recursive run. See description at the top of generator.cxx for description of how to convert a plugin. The sharedvisitor.cxx source is generated based on scanning relevant plugin sources using a clang-based scanner/generator. The generated source is intentionally included instead of getting always generated, as the generating currently takes some time, so it should get updated in git whenever a change in a plugin triggers a source change in it. Change-Id: Ia0d2e3a5a464659503dbb4ed6c20b6cc89b4de01 Reviewed-on: https://gerrit.libreoffice.org/68026 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Reviewed-by: Luboš Luňák <l.lunak@collabora.com>