summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-12-14Fix n#653688Thorsten Behrens
Seems our Zip package is a bit too strict in checking archive consistency - surely writing it out correctly is good, but rejecting otherwise fine odf is not.
2011-12-14Revert "we have gb_Library_add_objcxxobjects for this"Matúš Kukan
This reverts commit cd105c5ad2dc7176837a570e6507bd2ca0cd357f. We can't use gb_Library_add_objcxxobjects here because gb_ObjCxxObject_get_source has .mm suffix
2011-12-14set correct header/footer of examples html pagesAndras Timar
2011-12-14add makefile.mk that copies Python example to SDKAndras Timar
2011-12-14adding noop rules for auxtargets in buildpl, moved deps of buildpl into that ↵Bjoern Michaelsen
phase
2011-12-14skip AuxTargets in buildpl phaseBjoern Michaelsen
2011-12-14Yet another file to adapt post module gbuildification...Stephan Bergmann
2011-12-14stop formulabar controls being repositioned vertically in multiline modeNoel Power
2011-12-14Missing configmgr.component adaption in postprocess/packcomponents.Stephan Bergmann
2011-12-14typoStephan Bergmann
2011-12-14n#676858: Fix selection of background pictures vs textCédric Bosdonnat
2011-12-14sw: build hidden debug features in all casesCédric Bosdonnat
To activate the layout and node dumping features in sw, set the SW_DEBUG environement variable to anything before running the office. F12 will then dump the layout as a layout.xml file in the working directory, and Shift+F12 will dump the nodes structure as nodes.xml at the same place.
2011-12-14sw: fix dbglevel 2 build errorCédric Bosdonnat
2011-12-14corrections to Slovenian locale dataMartin Srebotnjak
2011-12-14Cleanup jpeg bitmap creation & loading codeMichael Meeks
2011-12-14we have gb_Library_add_objcxxobjects for thisMatúš Kukan
2011-12-14Create workdir sub-dirs before writing to them.Stephan Bergmann
2011-12-14update listCaolán McNamara
2011-12-14callcatcher: remove some unused codeCaolán McNamara
2011-12-14regpathhelper: unused, so we've got to have two of themCaolán McNamara
2011-12-14there's no point to OUStringsSort_ImplCaolán McNamara
2011-12-14ByteString->rtl::OString[Buffer]Caolán McNamara
2011-12-14unused stringsCaolán McNamara
2011-12-14Add latest tag name to buildid string.Thorsten Behrens
2011-12-14configmgr.component is no longer an old one.Stephan Bergmann
2011-12-14import text body rotation property of custom shapeFelix Zhang
2011-12-14Missing configmgr/prj/build.lst adaption.Stephan Bergmann
2011-12-14Replaced remaining OSL_ASSERT in configmgr.Stephan Bergmann
2011-12-14Ported configmgr to gbuild.Stephan Bergmann
2011-12-14force gbuild stage for CustomTargetsDavid Tardon
gb_SourceEnvAndRecurse_STAGE is unset in CustomTarget's make process when the parent make has been started in sourced environment. This leads to all sorts of "interesting" failures because the gbuild classes and platform stuff are not loaded...
2011-12-14fdo#39118: Fixed chart listener registration during ODS import.Kohei Yoshida
The breakage was due to the drawing layer re-work. We do need to store charts (or all OLE shapes with associated listening ranges) for later registration regardless of anchor types.
2011-12-13fdo#35981: Handle empty members correctly during field popup.Kohei Yoshida
Or else filtering of field members will not work correctly when the field contains an empty name.
2011-12-14missing include limitsMarkus Mohrhard
2011-12-14add c++ based subsequenttest for XNamedRangeLaurent Godard
one test disabled because we first need to write a patch for our internal cppunit
2011-12-14add makefile for new XNamedRange subsequenttestMarkus Mohrhard
2011-12-14ManageNames: info text should be centered in the text fieldMarkus Mohrhard
2011-12-14fix crash for std::numeric_limits<int>::min() in our math lib implMarkus Mohrhard
2011-12-14don't try to use Inf for axes calculation fdo#43703Markus Mohrhard
2011-12-13fdo#43681: Set correct auto scaling for stacked data series.Kohei Yoshida
With this change, the automatic y-axis scaling should be more accurate for stacked charts (i.e. stacked line, area, bar charts) with dates on the x-axis. The previous algorithm only calculated the max and min y-values of the individual data, without taking into account the stacking type when the x-axis type was date.
2011-12-14-Wl,-dead_strip_dylibs is not supported with XCode 2.5Christian Lohmaier
2011-12-13Simple officecfg/cppheader sanity check.Stephan Bergmann
2011-12-13Also escape dots in entity names used as C++ identifiers.Stephan Bergmann
2011-12-13Prefer reference over pointer (when it makes sense).Kohei Yoshida
2011-12-13fdo#43681: Always sort category axis when it's a date type.Kohei Yoshida
Or else we'd end up drawing a pretty interesting diagram...
2011-12-13Prefer pre-increments, especially with iterators.Kohei Yoshida
2011-12-13Unified configmgr::Node::getMember{s,Map} again.Stephan Bergmann
(With the insight that Data::components is RootNode::members.)
2011-12-13Resolves: rhbz#761009 IFSD_Equal is asymmetricalCaolán McNamara
2011-12-13Fix FullCommentURL for grammar checking (local menu)László Németh
2011-12-13Fix abort from stl debug iterators' invalid access.Thorsten Behrens
Triggered by fdo#43725, incrementing an invalid iterator bombs - though this seems a corner case, depends on whether one considers "+= 0" as incrementing or not.
2011-12-13More efficient insertion of B3DPolygonsThorsten Behrens
* some cleanup - removed ugly-as-hell exposure of only parts of the internal data struct on B2DPolygon (and reworked the only client of that code) * added stl-style begin/end to B3DPolyPolygon as well, mirroring B2DPolyPolygon, plus adapting the insert() func to make use of that (avoiding loads of temporaries)