summaryrefslogtreecommitdiff
path: root/oox
AgeCommit message (Collapse)Author
2012-03-22n#751054 fix VML import of absolutely positioned picturesMiklos Vajna
There were multiple issues here: - convertEmuToHmm() not handling negative values - position:absolute style property being ignored - mso-position-vertical-relative is not converted to text::RelOrientation - SwAnchoredDrawObject::_SetPositioningAttr() re-positioning already positioned objects - DomainMapper_Impl::PushShapeContext() inserting positioned objects as character
2012-03-21oox: it's EMU, not MEUMiklos Vajna
2012-03-21chmod -xTor Lillqvist
2012-03-20callcatcher: update listCaolán McNamara
2012-03-20remove unused code (oox, sc)Petr Vorel
2012-03-20removed unused codePetr Vorel
2012-03-17workaround for msvc instantiating things it shouldn'tLuboš Luňák
The cppu::ImplInheritanceHelper1 ctor should not get instantiated, but MSVC2008 does so and then it fails to compile.
2012-03-16move excel related oox bits to scNoel Power
2012-03-15fix mishandling of 'End Sub' is there is a trailing comment fod#46889Noel Power
2012-03-15remove unused code (oox, sd)Petr Vorel
2012-03-14Remove unused code in drawingml/table.Mariana Marasoiu
2012-03-14Remove unused code in drawingml/theme.Mariana Marasoiu
2012-03-14Remove unused code in drawingml/diagram.Mariana Marasoiu
2012-03-14Remove unused code in drawingml.Mariana Marasoiu
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann
...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-11remove unused codePetr Vorel
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan
2012-03-07Need the sfx library for sfx2::isValidNCName()Tor Lillqvist
2012-03-05support import of key shortcut for macro ( Excel only )Noel Power
2012-03-05n747499: Wav/Audio files import - stub.Muthu Subramanian
2012-03-05remove unused codePetr Vorel
2012-03-03Avoid temporary rtl::OUStringJulien Nabet
2012-03-03WaE: two unused functionsTor Lillqvist
2012-03-03WaE: use of logical '&&' with constant operandTor Lillqvist
Surely it's the bitwise operator & that is wanted here. The code makes no sense otherwise. We apparently have been generating UUIDs where every second hex digit is always a '1', like {x1x1x1x1-x1x1-x1x1-x1x1-x1x1x1x1x1x1} (where each x is a random hex digit).
2012-03-03WaE: expression result unusedTor Lillqvist
Remopve apparently accidentally leftover initializer parameter list that now was just a comma expression with no effect.
2012-03-03oox::drawingml::Shape: fix "lock underflow in SvxShape" assertionsMichael Stahl
2012-03-02customshapes: re-generate smaller, faster to compile data.Michael Meeks
2012-03-02customshapes: special-case Sequence of EnhancedCustomShapeParameterPairMichael Meeks
another 20% compile time win, and 350K saved from the shared library
2012-03-02customshapes: special case EnhancedCustomShapeParameterPair to winMichael Meeks
Gives a 50% shrink in compile time, and a ~1Mb shrink in binary size
2012-03-02customshapes: use static integer array for EnhancedCustomShapeSequencesMichael Meeks
Saves 4% compile time and 200K of space
2012-03-02customshapes: 800k size saving, and 25% compile speedupMichael Meeks
Use static const char * arrays and a helper function instead of inlining umpteen OUString intern calls.
2012-03-02generate more pptx test documents with preset shapesRadek Doulik
- before we only generated custom shapes used as presets definition - preset-*.pptx documents might be used for testing the presets
2012-03-02customshapes: commit updated autogenerated output.Michael Meeks
2012-03-02customshapes: re-work generation to create many small methodsMichael Meeks
each custom shape now has a virtual constructor we can call to construct it, this shrinks the function size, and helps the optimiser much accelerating compile time. It may even help improve import time too.
2012-03-02document customshapes (re-)generation flow.Michael Meeks
2012-03-02weed out unmatched Sub/End Sub statements when importing VBA fdo#46889Noel Power
2012-03-02n719988, n734733: Bullet should have same color as following text by defaultFelix Zhang
2012-03-02n657904: Styling information isn't applied to grpSp.Muthu Subramanian
2012-02-29n#746996: Wrong text color in smartArt.Muthu Subramanian
Some fontRef elements don't seem to define color, but the spec. says it needs to be used along with choice of color. So, assuming tx1 when there are none defined.
2012-02-28Remove unused code in BiffInputStream.Santiago Martinez
2012-02-28Remove unused code in BiffObjLineModel.Santiago Martinez
2012-02-24fix oox debug build with DBG_UTIL guard for 'dump' usageMichael Meeks
2012-02-24oox: guard dbgutil-only methods with ifdefMiklos Vajna
2012-02-24reintroduced dump methods that are needed if OSL_DEBUG_LEVEL > 0Eike Rathke
* Partly reverted commit 660cb78cd6900ffebe215ad4b3913bbe35ac9883 to preserve the oox::PropertyMap::dump() methods that are needed by oox::PropertySet::dump() when building dbgutil. * Did not remove the oox::PropertySet::dump() as well because all is part of the oox dumper, I guess we don't want to remove that in it's entirety ...
2012-02-23unusedcode: remove something from ooxMatúš Kukan
2012-02-23fdo#45560: Fixed docx textbox position and size importCédric Bosdonnat
2012-02-22force imported xlsx active tab to be shown bnc#748198Noel Power
weirdly even though a sheet/tab can be marked as hidden in workbook.xml, if that same tab/sheet is the active one then it *will* be shown
2012-02-20Bin code that is never executed but calls a method that has been removedTor Lillqvist
2012-02-20Remove unused codeElton Chung
2012-02-19Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe
to equalsIgnoreAsciiCaseAscii("...")