summaryrefslogtreecommitdiff
path: root/scripting
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-02-25 17:50:08 +0100
committersb <sb@openoffice.org>2010-02-25 17:50:08 +0100
commit2feedd1a5a553fa9ef8bba50ec34756d60b3ccf7 (patch)
tree9926f69c42a63793c7ff9484168379d13229ab79 /scripting
parent3ca6122eee86170d6bbde1dc8f68085730286509 (diff)
sb118: #i108776# replaced newly introduced version map file with solenv/src template
Diffstat (limited to 'scripting')
-rwxr-xr-xscripting/source/vbaevents/makefile.mk2
-rwxr-xr-xscripting/source/vbaevents/vbaevents.map9
2 files changed, 1 insertions, 10 deletions
diff --git a/scripting/source/vbaevents/makefile.mk b/scripting/source/vbaevents/makefile.mk
index 227da45f9f..1946c61d1e 100755
--- a/scripting/source/vbaevents/makefile.mk
+++ b/scripting/source/vbaevents/makefile.mk
@@ -60,7 +60,7 @@ SLOFILES= \
SHL1TARGET= $(TARGET)$(DLLPOSTFIX).uno
SHL1IMPLIB= i$(TARGET)
-SHL1VERSIONMAP=$(TARGET).map
+SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1DEF=$(MISC)$/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET)
diff --git a/scripting/source/vbaevents/vbaevents.map b/scripting/source/vbaevents/vbaevents.map
deleted file mode 100755
index 737cddbfe3..0000000000
--- a/scripting/source/vbaevents/vbaevents.map
+++ /dev/null
@@ -1,9 +0,0 @@
-OOO_1.1 {
- global:
- component_getImplementationEnvironment;
- component_getFactory;
- component_writeInfo;
-
- local:
- *;
-};
main, development code repositoryroot
summaryrefslogtreecommitdiff
path: root/o3tl/qa
AgeCommit message (Expand)AuthorFilesLines
2021-02-14Fix copy-paste leftoverMike Kaganski1-2/+2
2021-02-14Move unit conversion code to o3tl, and unify on that in more placesMike Kaganski1-0/+872
2021-01-13Verify o3tl::temporary of a copied lvalue works as expectedStephan Bergmann1-0/+47
2020-12-23Rename sorted_vector::erase(size_t) to erase_atJan-Marek Glogowski1-2/+2
2020-11-18tdf#123936 Formatting files in module o3tl with clang-formatPhilipp Hofer2-37/+36
2020-02-22Adapt o3tl::span to removal of std::span::cbegin et alStephan Bergmann1-6/+0
2019-12-07Adapt o3tl::span to P1872R0Stephan Bergmann1-3/+4
2019-11-22Extend loplugin:external to warn about classesStephan Bergmann2-0/+7
2019-11-17Extend loplugin:external to warn about enumsStephan Bergmann1-0/+3
2019-10-08Introduce o3tl::unsafe_downcast for known-good dynamic_cast downcastsStephan Bergmann1-0/+32
2019-09-01Fix '..'Andrea Gelmini1-1/+1
2019-08-23Mark move ctors/assignments noexceptMike Kaganski2-12/+12
2019-02-20o3tl::make_unique -> std::make_unique in include/ & o3tl/Gabor Kelemen1-9/+8
2019-01-13array_view was changed to span in upcoming C++20Stephan Bergmann2-85/+65
2019-01-11Drop o3tl/string_view.hxxStephan Bergmann1-221/+0
2018-12-16Fix o3tl::string_view streaming operator <<Stephan Bergmann1-0/+9
2018-10-07-Werror=catch-value=Julien Nabet1-1/+1
2018-10-06Convert ImplFontCache to use o3tl::lru_mapJan-Marek Glogowski1-0/+20
2018-10-06Add a glyph-bound-rect cache to the font cacheJan-Marek Glogowski1-0/+55
2018-09-19implement find(T*) for o3tl::sorted_vector wh