Commit graph

303005 commits

Author SHA1 Message Date
Caolán McNamara
848127a6c3 make sdw smoketest document more useful 2012-03-14 12:08:32 +00:00
Caolán McNamara
9de6b045ab toggle on view all records in biblio.odb 2012-03-14 12:08:31 +00:00
Caolán McNamara
60cf5b57b0 callcatcher: update list 2012-03-14 12:08:31 +00:00
Caolán McNamara
66c62ca16d we just want to know if its a directory/folder or not 2012-03-14 12:08:31 +00:00
Michael Stahl
5cc6398985 fdo#47246: desktop: factor out a winlauncher static library 2012-03-14 12:33:47 +01:00
Stefan Knorr (astron)
25d571fff3 svtools/source/contnr: translate comments 2012-03-14 12:16:29 +01:00
Stefan Knorr (astron)
0e5430ae15 svtools/source/config: fix typos, translate 2012-03-14 12:16:29 +01:00
Stefan Knorr (astron)
39b2b14a35 svtools/source/brwbox: translate comments 2012-03-14 12:16:29 +01:00
Tom Thorogood
21c646a8e8 Add options to bin/find-german-comments to help weed out false positives 2012-03-14 08:58:27 +01:00
David Tardon
1c9408fde2 fix typo 2012-03-14 05:58:16 +01:00
Kohei Yoshida
49d3e30ec9 When changing grouping in one pivot table, update all linked tables.
We need to do this now because we now store the group field data directly
in the pivot cache, which is shared by all referencing tables.

Also, actions involving modification of the cache is not undoable, and
making it undoable would significantly increase Calc's runtime memory
footprint.  So, no way.
2012-03-14 00:35:29 -04:00
Kohei Yoshida
6aeed3c93b Re-added ClearSource() which will only clear the source. Nothing else. 2012-03-14 00:35:29 -04:00
Kohei Yoshida
49cb939de7 Rename ClearSource() to ClearTableData(). 2012-03-14 00:35:29 -04:00
Kohei Yoshida
b4af9a6a90 Let's just do the whole thing in the new method. 2012-03-14 00:35:29 -04:00
Kohei Yoshida
9be4051645 Dedicated method for refreshing multiple linked pivot tables. 2012-03-14 00:35:28 -04:00
Kohei Yoshida
c18dc2e204 Use bool. 2012-03-14 00:35:28 -04:00
Kohei Yoshida
599c06acb2 Check the return value for negative index, to prevent crash.
Also, use at(index) when unsure about boundary condition.  That makes
it easier to detect where illegal memory access is being done.
2012-03-14 00:35:28 -04:00
Markus Mohrhard
fe01a68eaa refactor the chart test code a bit 2012-03-14 02:40:17 +01:00
Markus Mohrhard
81b4ac4f8c add more code to the chart dumper 2012-03-14 02:40:17 +01:00
Takeshi Abe
785e07b3ac fixed pointer to the paper.hxx in comment 2012-03-14 08:48:56 +09:00
Noel Grandin
a4a7b956dc Convert tools/table.hxx usage to std::set in toolkit module in UnoPropertyArrayHelper class 2012-03-13 23:19:54 +01:00
Noel Grandin
aa998adbe3 Convert tools/table.hxx to std::set in SwSrcEditWindow in SW module 2012-03-13 23:19:54 +01:00
Noel Grandin
64cba6e582 Convert tools/table.hxx to std::map in CGMElements class 2012-03-13 23:19:54 +01:00
Noel Grandin
f1bd21bdbb Converts from tools/table.hxx to std::map in DffPropSet class in filter module 2012-03-13 23:19:53 +01:00
Arnaud Versini
b81955ffe0 Adding virtual destructor to WW8ResourceModel.hxx classes 2012-03-13 23:19:52 +01:00
Markus Mohrhard
3edbc2cf8d add some more dump output + WaE unitialized values 2012-03-13 22:16:22 +01:00
Stephan Bergmann
f33b3791ed Related fdo#47246: Extract objects used in both svp and gtk3 plugins 2012-03-13 18:36:02 +01:00
Markus Mohrhard
6974cc9a83 first part for new chart test concept
Idea:
- write the layout data to a xml file

still missing:
- xml export part
- some more properties need to be exported
- some more structure information need to be dumped
- find a way to start dumping after importing
2012-03-13 18:08:24 +01:00
Luboš Luňák
9e6b086c62 string literals in ?: don't get automatically converted to OUString
Technically these two are both const char[8], so gcc/clang keep
the resulting type the same, but msvc always converts to const char*,
even if the same sizes mean this is not required.
2012-03-13 17:08:59 +01:00
Caolán McNamara
badbf0c925 Related: fdo#46728 it would help to initialize the reference count I suppose 2012-03-13 16:01:03 +00:00
Miklos Vajna
2352ed8a8c writerfilter: catch UnknownPropertyExcetion early 2012-03-13 16:35:10 +01:00
Miklos Vajna
2ff3ce4b7e writerfilter: log exception message in ModelEventListener 2012-03-13 16:35:10 +01:00
Luboš Luňák
01baa9e0c8 checked that we do not use OString ctor with literals with \0's
Except in some unittests, which are sometimes rather silly and
broken about it, which might explain why they're disabled.
2012-03-13 16:21:05 +01:00
Luboš Luňák
3d9f5c856a make OString work even with old gcc that has SFINAE broken
Since OString already has a ctor accepting const char*, I cannot
find out a way to distinguish string literals other than using
a template, otherwise const char* somehow takes precedence
(all of gcc, clang, msvc). But the template requires
the Substitution Is Not A Failure Idiom to actually create
only wanted instances. And the compiler can try evaluate
the OString ctor as a possibility when comparing an int to
an anonymous enum, and anonymous enum as a type without linkage
cannot be a template argument before C++11. SFINAE should still
work, but not with gcc older than 4.0.2 (which we right now
use only on macs). So for that case disable the string literal
ctors, which means macs will have one extra strlen call,
and also that embedded \0's in string literals will be
inconsistent. The tiny performance problem shouldn't matter that
much and will eventually go away, the \0 problem should not
matter, since before string literal ctors were introduced
\0's had not been included anyway unless RTL_CONSTASCII_STRINGPARAM
was used. So we should be safe and when removing the CONSTASCII
macros \0 cases should be handled by explicitly mentioning
the length.
2012-03-13 16:21:04 +01:00
Caolán McNamara
131e5d35a4 Resolves: fdo#46728 reference count the overlay managers 2012-03-13 15:15:11 +00:00
Caolán McNamara
ccac587b1b merge return branches 2012-03-13 15:15:10 +00:00
Caolán McNamara
86e0ba7eb8 forward declaration doesn't make any sense, need to see whole definition 2012-03-13 15:15:10 +00:00
Korrawit Pruegsanusak
9a22f0df9e another missing open brace 2012-03-13 22:05:55 +07:00
Korrawit Pruegsanusak
1c12cc8070 missing open brace 2012-03-13 21:45:42 +07:00
Miklos Vajna
605bc21f79 ww8: implement sprmPFContextualSpacing 2012-03-13 15:04:18 +01:00
Rene Engelhard
f55423d1d4 remove *.pyc in solenv/gdb in make distclean 2012-03-13 15:01:47 +01:00
Michael Meeks
5002b28979 trailing whitespace cleanup 2012-03-13 13:58:46 +00:00
Nicolas Christener
50337941b9 translate german comments 2012-03-13 13:57:37 +00:00
Bjoern Michaelsen
3b6773c9d4 add bug-id directly to the error message 2012-03-13 14:53:03 +01:00
Bjoern Michaelsen
d54e03caf9 binaryurp has cppunit tests 2012-03-13 14:53:02 +01:00
Bjoern Michaelsen
567a22f15a upstream pkgconfig-mozilla-plugin.diff from Ubuntu/Debian packaging 2012-03-13 14:53:02 +01:00
Bjoern Michaelsen
58f5a26e2d fdo#47246: abort on duplicate linked objects 2012-03-13 14:53:02 +01:00
Ivan Timofeev
f1040f9fa7 always use the *real* visibility of the SwScrollbar, part 2 2012-03-13 17:31:22 +04:00
Fridrich Štrba
073ea37399 Revert "Pass /useenv to vcbuild so that rc and link find SDK headers and libs"
It breaks on a clean installs of Windows, and registration of SDK with Visual
Studio seems to be the answer.

This reverts commit f3f6c9be98.

Conflicts:

	lcms2/makefile.mk
2012-03-13 14:15:20 +01:00
Caolán McNamara
ffc3c27130 Conditional jump or move depends on uninitialised value 2012-03-13 12:58:35 +00:00