Commit graph

198 commits

Author SHA1 Message Date
David Tardon
6de7392829 add package deps for resources 2012-04-09 10:09:23 +02:00
Michael Stahl
4c50f23f87 LinkTarget.mk: remove gb_LinkTarget_add_package_headers 2012-04-08 01:05:53 +02:00
Michael Stahl
c923f7d2c2 gbuild: "use" vs. "add":
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-08 01:05:52 +02:00
Caolán McNamara
e9a467cafb remove static objects from static_initialization_and_destruction chain 2012-04-02 14:53:50 +01:00
Matúš Kukan
f64d58e3e1 more dependencies and include paths 2012-03-27 01:48:56 +02:00
Michael Stahl
13ff4059a8 .html files don't need executable bits 2012-03-23 21:58:19 +01:00
Michael Stahl
9429bbb0c4 .component files don't need executable bits 2012-03-23 21:58:14 +01:00
Michael Stahl
d7aacb8461 .hrc files don't need executable bits 2012-03-23 21:58:14 +01:00
Michael Stahl
68f2753710 .h files don't need executable bits 2012-03-23 21:58:13 +01:00
Markus Mohrhard
278c53c933 restructure the code a bit more 2012-03-22 00:24:27 +01:00
Markus Mohrhard
ac5455a688 prevent call to virtual method in destructor, fdo#47589 2012-03-22 00:24:27 +01:00
Stephan Bergmann
543697d1d6 No FORMULA_DLLPUBLIC needed here 2012-03-21 20:41:13 +01:00
Stephan Bergmann
bc99f1ce4c Ensure ResMgr outlives Resources 2012-03-21 20:32:47 +01:00
Tor Lillqvist
2a1171929e chmod -x 2012-03-21 13:00:45 +02:00
Stephan Bergmann
6e67c03dc0 Enable -Wnon-virtual-dtor for GCC 4.6
...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-14 13:32:02 +01:00
Matúš Kukan
84b3f7b345 gbuild: get rid of realpath in gb_Foo_set_include 2012-03-10 21:23:20 +01:00
Tor Lillqvist
a16d3914c9 WaE: expression result unused 2012-03-05 02:05:17 +02:00
Stephan Bergmann
f50f7368ab More IMPL_LINK_NOARG fixes 2012-03-01 23:55:47 +01:00
Stephan Bergmann
bd205223ec New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problem
...see ebe26f72e9 "WaE: 'unused' attribute ignored when parsing type"
for the problem.
2012-03-01 18:00:32 +01:00
Matúš Kukan
4b30ec9def fdo#39491 -I$(OUTDIR)/inc is set in SOLARINC 2012-02-10 21:41:45 +01:00
Josh Heidenreich
64e1ae0f55 Added READMEs for modules which used to be in libs-core 2012-02-08 06:37:16 +01:00
Norbert Thiebaud
c857dff7fc switch to include-based build rather than sourced-based build 2012-02-05 19:34:05 -06:00
Caolán McNamara
17ecf0036d callcatcher: update list, remove newly unused methods 2012-01-24 16:53:56 +00:00
Stephan Bergmann
9807566e12 Mempool size args are unused. 2012-01-20 12:14:45 +01:00
Thomas Arnhold
d93536e529 remove unused methods 2012-01-19 19:15:08 +01:00
Thomas Arnhold
3e7151db8d remove unused macros 2012-01-19 19:15:08 +01:00
Marcel Metz
2a566b1775 Replaced SAL_INFO with SAL_WARN were applicable. 2012-01-17 23:27:44 +01:00
Marcel Metz
a18123fb97 Replaced DBG_ERRORFILE with SAL_INFO. 2012-01-16 12:51:33 +01:00
Caolán McNamara
45b19123a6 simplify CharClass
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-09 13:28:37 +00:00
Marcel Metz
53d27eb207 Removed unnecessary tools includes. 2012-01-05 15:38:51 +01:00
Marcel Metz
571ad11bc0 Removed unnecessary tools includes. 2012-01-05 15:36:41 +01:00
Olivier Hallot
3e4f51f112 Fix for fdo43460 Part XIX getLength() to isEmpty()
Part XIX
Module
formula and fpicker
2011-12-26 14:26:08 +04:00
Takeshi Abe
520891d058 catch exception by constant reference 2011-12-14 01:31:17 +09:00
Eike Rathke
3deb83d7a7 i#106210 store proper ODFF names, accept aliases
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 a9b03bd199)
2011-12-07 23:39:22 +01:00
Bjoern Michaelsen
2acd8fbac9 in modules, when we have a env we are in stage gbuild 2011-12-07 15:53:06 +01:00
Caolán McNamara
c8ef924060 normalize Red Hat, Inc. spellings, and bump to latest template 2011-12-06 21:24:37 +00:00
Bjoern Michaelsen
d73e574d8a move reconfigure into gbuild 2011-11-29 17:25:14 +01:00
Eike Rathke
0afc3190de #i111413# re-added translation relevant strings for SEC, CSC, SECH and CSCH.
Functions' UI name strings weren't marked for translation, added that now.
2011-11-28 15:25:34 +01:00
Norbert Thiebaud
c0bed9c72e remove precompiled_xxx.hxx/cxx 2011-11-27 18:07:55 -06:00
Norbert Thiebaud
3f2ff54778 remove pch from the include list 2011-11-27 15:24:45 -06:00
Norbert Thiebaud
e084744818 remove include of pch header from formula 2011-11-27 13:10:04 -06:00
Norbert Thiebaud
992757cc5e remove pre-compiled header support in gbuild and gbuildified module 2011-11-27 11:49:38 -06:00
Bjoern Michaelsen
f2f0dbd273 make gbuild makefiles run independant of pwd again 2011-11-25 12:04:40 +01:00
Caolán McNamara
ca02d72808 remove [Byte]String::EraseAllChars 2011-11-19 21:11:02 +00:00
Norbert Thiebaud
0ea8c014ef tweak gbuild standart Makefile to allow partial build in unsourced env
This allow to run make in a module wihtout the need to source
Env.Host.sh.
2011-11-16 06:18:54 -06:00
Olivier Hallot
b0224f8050 Fix for bug fdo#41997, cleanup vcl enumeration 2011-10-21 20:48:03 +01:00
Felix Zhang
9f562a82c6 remove unused methods from formula::FormulaModalDialog 2011-10-20 10:24:18 +02:00
Tor Lillqvist
ab988bf055 WaE: unreachable code 2011-10-18 18:26:54 +03:00
Pierre-André Jacquod
faeb15dd32 cppcheck reduce scope of var in formula/..formula.cxx 2011-10-07 15:57:55 +02:00
Pierre-André Jacquod
ff5899f188 cppcheck reduce scope of var in formula/..formula.cxx 2011-10-07 15:57:38 +02:00