summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/excel/XAxes.idl
AgeCommit message (Expand)Author
2022-06-13Drop obsolete preprocessor directives from UNOIDL filesStephan Bergmann
2013-09-22add mode lines to new files (and idls) since last runCaolán McNamara
2012-06-21re-base on ALv2 code.Michael Meeks
2011-03-29drop bogus executable flag from idl/build/src and config filesFrancisco Saito
2011-03-25Strip include guards in idl files part2Julien Nabet
2011-03-12Merge commit 'ooo/DEV300_m101' into integration/dev300_m101Thorsten Behrens
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun Mi...Jens-Heiner Rechtien
2009-02-13CWS-TOOLING: integrate CWS npower11Oliver Bolte
e necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed. 2012-02-21WaE: silence some documentation errorsThomas Arnhold 2012-02-06Added READMEs for modules related to URE, with content from the wikiJosh Heidenreich 2012-01-31SimplificationStephan Bergmann 2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers. 2012-01-10valgrind: have MappedLockBytes take complete ownership of the file handleCaolán McNamara have MappedLockBytes take complete ownership of the file handle and unmap it and close it on release. Otherwise xFile will close it and MappedLockBytes will unmap it in that order, which breaks post android requirement to have a valid file handle in unmap 2011-12-21osl_unmapFile can't work for files bundled inside the .apk on AndroidTor Lillqvist On Android, when an app is installed, arbitrary files bundled in the app won't be unpacked into actual separate files in the file system. They will exist only as archive entries in the .apk file (which is a zip archive). The SDK tooling puts such files under the /assets folder in the .apk. The LibreOffice bootstrapping code for Android maps the .apk file into memory. osl_openFile() knows about the /assets special case, and uses a separate abstraction for such memory-mapped files. Obviously, when producing an .apk, one needs to make sure these bundled files are not compressed, if one wants to be able to use them directly from the memory-mapped .apk file. We do that in our test and sample Android projects. When mapping such files under /assets , just return a pointer to the file's location inside the mapped .apk archive. We can't use the old osl_unmapFile() on such mapped files, as that would unexpectedly unmap fairly arbitrary pages of the .apk mapping, wreaking havoc on later use of the same pages. So, introduce a new osl_unmapMappedFile() function that takes also the oslFileHandle originally passed to osl_mapFile(). Use this instead in the few places where the code actually called osl_unmapFile(). Make sure osl_mapFile() is nonexistent on Android. 2011-12-11I don't see NO_BSYMBOLIC being used anywhereTor Lillqvist 2011-11-27remove precompiled_xxx.hxx/cxxNorbert Thiebaud 2011-11-27remove include of pch header from storeNorbert Thiebaud 2011-11-27remove PCH support in dmake-moduleNorbert Thiebaud 2011-11-10Deliver libstore.so for AndroidTor Lillqvist 2011-09-21OSL_TRACE: Remove trailing newlinesThomas Arnhold Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines