summaryrefslogtreecommitdiff
path: root/formula
AgeCommit message (Collapse)AuthorFilesLines
2012-05-29targetted SAL_N_ELEMENTS reversion.Michael Meeks1-4/+4
Change-Id: I30be93ccaeb1f9fd17cbe9e3ed3165e094810b2e
2012-05-16remove unneeded include of boost/bind.hppCaolán McNamara1-1/+2
Change-Id: I5a254459a491b9547530d8e312260dceed21f25c
2012-05-13fdo#44456 added calc function DATEDIF as in ODF1.2Winfried Donkers3-3/+11
Change-Id: I082ea20d02bf37d515fc33d627281696fc48fcb6
2012-05-13callcatcher: update unused code listCaolán McNamara4-31/+0
Change-Id: I2b21cb0b6d9164b18594e2c122ce242062be276d
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen1-1/+0
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
2012-04-23Unused code removalJavier Silva Sanahuja2-6/+0
2012-04-20Remove unused method ArgInput::GetArgSelectionJaime Navarro2-22/+0
2012-04-09add package deps for resourcesDavid Tardon2-1/+9
2012-04-08LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl1-1/+1
2012-04-08gbuild: "use" vs. "add":Michael Stahl2-4/+4
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
2012-04-02remove static objects from static_initialization_and_destruction chainCaolán McNamara4-9/+17
2012-03-27more dependencies and include pathsMatúš Kukan1-0/+1
2012-03-23.html files don't need executable bitsMichael Stahl1-0/+0
2012-03-23.component files don't need executable bitsMichael Stahl1-0/+0
2012-03-23.hrc files don't need executable bitsMichael Stahl6-0/+0
2012-03-23.h files don't need executable bitsMichael Stahl1-0/+0
2012-03-22restructure the code a bit moreMarkus Mohrhard2-9/+6
2012-03-22prevent call to virtual method in destructor, fdo#47589Markus Mohrhard2-9/+31
2012-03-21No FORMULA_DLLPUBLIC needed hereStephan Bergmann1-3/+2
2012-03-21Ensure ResMgr outlives ResourcesStephan Bergmann10-17/+109
2012-03-21chmod -xTor Lillqvist1-0/+0
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann5-0/+28
...which has the 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-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan4-6/+6
2012-03-05WaE: expression result unusedTor Lillqvist1-1/+1
2012-03-01More IMPL_LINK_NOARG fixesStephan Bergmann2-2/+2
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann7-20/+20
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-02-10fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan4-4/+0
2012-02-08Added READMEs for modules which used to be in libs-coreJosh Heidenreich1-0/+3
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud1-35/+2
2012-01-24callcatcher: update list, remove newly unused methodsCaolán McNamara3-43/+0
2012-01-20Mempool size args are unused.Stephan Bergmann1-7/+4
2012-01-19remove unused methodsThomas Arnhold10-227/+0
2012-01-19remove unused macrosThomas Arnhold1-7/+0
2012-01-17Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz2-16/+16
2012-01-16Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz2-16/+16
2012-01-09simplify CharClassCaolán McNamara1-2/+1
multiple variants of toUpper (etc) some that take a non-const OUString or String and modify it some that take a const OUString or String and return a new one some that take part of a const OUString or String and return a new one
2012-01-05Removed unnecessary tools includes.Marcel Metz1-1/+1
2012-01-05Removed unnecessary tools includes.Marcel Metz1-1/+0
2011-12-26Fix for fdo43460 Part XIX getLength() to isEmpty()Olivier Hallot4-13/+13
Part XIX Module formula and fpicker
2011-12-14catch exception by constant referenceTakeshi Abe1-1/+1
2011-12-07i#106210 store proper ODFF names, accept aliasesEike Rathke1-3/+3
Older releases stored a few function names not defined by ODFF, namely EASTERSUNDAY instead of ORG.OPENOFFICE.EASTERSUNDAY, TDIST instead of LEGACY.TDIST and B instead of BINOM.DIST.RANGE. Since OOo/LibO 3.3 the proper function names can be read, additionally to the "wrong" names. Now it's time to write the proper names and still accept the incorrect ones. Test cases are attached to AOOo issues: ORG.OPENOFFICE.EASTERSUNDAY https://issues.apache.org/ooo/show_bug.cgi?id=112882 LEGACY.TDIST and BINOM.DIST.RANGE https://issues.apache.org/ooo/show_bug.cgi?id=110229 Note that the FALSE in A2 and A3 is a result of the string comparison of the actual formula, that differs in separators (, vs ;) only. (cherry picked from commit a9b03bd19945a90040fd4346599e281a7813efc2)
2011-12-07in modules, when we have a env we are in stage gbuildBjoern Michaelsen1-0/+1
2011-12-06normalize Red Hat, Inc. spellings, and bump to latest templateCaolán McNamara6-30/+24
2011-11-29move reconfigure into gbuildBjoern Michaelsen1-1/+1
2011-11-28#i111413# re-added translation relevant strings for SEC, CSC, SECH and CSCH.Eike Rathke1-4/+4
Functions' UI name strings weren't marked for translation, added that now.
2011-11-27remove precompiled_xxx.hxx/cxxNorbert Thiebaud2-68/+0
2011-11-27remove pch from the include listNorbert Thiebaud2-2/+0
2011-11-27remove include of pch header from formulaNorbert Thiebaud13-20/+0
2011-11-27remove pre-compiled header support in gbuild and gbuildified moduleNorbert Thiebaud2-4/+0
2011-11-25make gbuild makefiles run independant of pwd againBjoern Michaelsen1-2/+2