summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* woah, that's very not rightCaolán McNamara2011-10-061-2/+3
|
* WaE: class has virtual functions, but destructor is not virtualTor Lillqvist2011-10-061-1/+1
|
* WaE: '=' : truncation of constant valueTor Lillqvist2011-10-061-1/+1
|
* add hackery re. EditControls, FormattedField & ImageControls from msocximexNoel Power2011-10-061-2/+31
|
* Revert "Simplify logic to use std::vector's .empty()"Jan Holesovsky2011-10-062-1/+13
| | | | | | This reverts commit a6a51b6a69bd14c6ad67a8e6629cf405034dd701. The commit broke the build, sorry for the push.
* WaE: class has virtual functions, but destructor is not virtualTor Lillqvist2011-10-061-1/+5
|
* WaE: class has virtual functions, but destructor is not virtualTor Lillqvist2011-10-061-1/+1
|
* WaE: class has virtual functions, but destructor is not virtualTor Lillqvist2011-10-061-1/+1
|
* WaE: unreachable codeTor Lillqvist2011-10-061-0/+5
|
* Simplify logic to use std::vector's .empty()Kevin Hunter2011-10-062-13/+1
| | | | | | No need to muck about with iterators, adding a loop, and 2 function calls to test for empty: it's a std::vector under the hood, so use .empty(), and inline it.
* Ensure msword lib has not yet been unloaded when aReaderWriter pReaders are ↵Stephan Bergmann2011-10-066-30/+80
| | | | | | | | destroyed. ...as some may use code exported from msword lib. The newly introduced sw::Filters class can still be improved, bundling what is currently exported through various channels from fltini.cxx. Also, the code is still not thread safe.
* WaE: unreachable codeTor Lillqvist2011-10-061-0/+7
|
* WaE: inconsistent dll linkageTor Lillqvist2011-10-061-4/+4
| | | | | basicrt goes into the static app library, so DLL import/export decorations meaningless.
* WaE: unreachable codeTor Lillqvist2011-10-061-0/+9
|
* WaE: unreferenced local variableTor Lillqvist2011-10-061-1/+1
|
* WaE: unreachable codeTor Lillqvist2011-10-061-2/+0
|
* improve error message for missing csv filesMarkus Mohrhard2011-10-061-1/+3
|
* and forgot again to add a fileMarkus Mohrhard2011-10-061-0/+2
|
* add unit test for fdo#41381Markus Mohrhard2011-10-062-0/+6
|
* fix for fdo#41381: local range names don't work with INDIRECTMarkus Mohrhard2011-10-063-5/+24
|
* remove apparently noise .memdump filesNorbert Thiebaud2011-10-052-8/+0
|
* Revert "added CXX source with generated presets definitions"Norbert Thiebaud2011-10-051-92382/+0
| | | | | | | | | This reverts commit c9f9b6723b40279716b1e34c1441a33e60cceb58. oox/source/drawingml/customshapepresets.cxx is a 4MB source that make gcc explode both on MacOs and on Gentoo.... the compiler churn on it for 20 minutes or consumming huge amount of memory... and finnaly blow-up with memory error.
* Revert "custom shapes import improvements"Norbert Thiebaud2011-10-0510-173/+2101
| | | | This reverts commit e36f591dfeb89fded172f4770157bc6cb6dc7454.
* Revert "add hackery re. EditControls, FormattedField & ImageControls from ↵Noel Power2011-10-051-26/+2
| | | | | | msocximex" This reverts commit 04688482241aa28b40f3ba911a4c9acab87b5d56.
* bnc#722045: Display page background color/image properly.Kohei Yoshida2011-10-053-9/+8
| | | | | | | | | | | A regression from 3.3. Calc wouldn't display page background color or image in print preview. This was a side effect of the removal of the high-contract mode. In 3.3, Calc purpusefully wouldn't show background color/image when the app is in high contrast mode. Now that the mode has been removed, the code acted as though the high contract mode is always on, which caused the background color/image to always be hidden in print preview.
* eliminate @MINIMIZEREXTENSIONPRODUCTNAME@ variableAndras Timar2011-10-053-13/+7
|
* merge strings to description.xml filesAndras Timar2011-10-052-33/+112
|
* enable the star basic test to see if it causes troubles anywhereMarkus Mohrhard2011-10-051-1/+1
|
* add initial work for vba tests in calc( work in progress)Markus Mohrhard2011-10-054-0/+42
| | | | | this does not work yet, it still does not load the vba code correctly and therefore can't find the vba library
* add Star Basic unit test to calcMarkus Mohrhard2011-10-052-1/+46
| | | | | test is still disabled by default, it works but does nothing useful yet
* add hackery re. EditControls, FormattedField & ImageControls from msocximexNoel Power2011-10-051-2/+26
|
* fix broken eventattacher. bnc#718227Noel Power2011-10-051-1/+1
| | | | | event handler registered for a ListenerType were triggered when *any* of the events associated with that ListenerType were fired.
* custom shapes import improvementsRadek Doulik2011-10-0510-2101/+173
| | | | | | | | | | | | | | - added new presets generated from definition included in ISO standard - added missing variables (cd3, hd10, ...) - added ifelse shortcut ?: - removed GetAdjAngle because it would make problems with constant vs. equation defined angles, move conversion to the functions using them - implemented arcTo path segment (command) - removed GetTextShapeType as we don't use vml's presets for drawingml anymore - use token number for preset type instead of string, as we don't convert to old vml's preset types anymore - enhanced custom shape properties dump code
* added CXX source with generated presets definitionsRadek Doulik2011-10-051-0/+92382
|
* fix compilation with debug enabledRadek Doulik2011-10-051-1/+2
|
* added ARCANGLETO command implementation, optimization, fixes, debugRadek Doulik2011-10-053-11/+129
| | | | | | | | | | | - added new ARCANGLETO command needed for PPTX custom shapes import - added added placeholder for unimplemented QUADRATICCURVETO command, skip it's data at least so that we don't break other things for now - cache equations results to optimize custom shapes calculation PPTX import creates such equations that made system busy for long time, this removes that issue - added lot of debug output to help with debugging of complex imported custom shapes
* add another ARC commandRadek Doulik2011-10-051-0/+4
| | | | - defined by start and swing angles + ellipse width and height
* fix construction of ARC polygon in case the ellipse width != heightRadek Doulik2011-10-051-4/+6
|
* fdo#41478 follow-up cleanup.Jan Holesovsky2011-10-051-13/+12
|
* Fix for bug fdo#41478 [UI]add "Protect Sheet" command in sheet popup menuOlivier Hallot2011-10-051-9/+16
| | | | | The fix adds a new entry in the sheet popup menu with Protect Sheet command followinf the discussion in UX list, as indicated in the bug.
* Page Break: implement the break before page caseCédric Bosdonnat2011-10-053-7/+31
|
* fix also older gtk+ buildFridrich Štrba2011-10-051-1/+1
|
* WaE: unused variablesCaolán McNamara2011-10-051-2/+5
|
* Build a small static date_time/gregorian for cbosdonnat's perusalFridrich Štrba2011-10-053-3/+88
|
* WaE: unreachable codeTor Lillqvist2011-10-051-1/+2
|
* Use OUString::getStr()Tor Lillqvist2011-10-051-2/+2
|
* test fix: use setUp and tearDown not constructors to init LibreOfficeMichael Meeks2011-10-0512-58/+95
| | | | | | It turns out the constructors are all run back-to-back one per filter, and we need to init and de-init in a sensible order to make multiple tests that otherwise share the ContentBroker work properly.
* Page Break: basic implementation of the popup menu actionsCédric Bosdonnat2011-10-054-3/+48
| | | | | | Open the paragraph properties dialog on Text Flow tab when clicking on the Edit item. Remove the page break (and add it to the undo stack) when clicking on the Delete item.
* fix compilation after the recent OUString::operator char*() removalLuboš Luňák2011-10-051-7/+7
|
* WaE: unsafe mix of type 'bool' and type 'sal_Bool' in operationTor Lillqvist2011-10-051-1/+1
|