summaryrefslogtreecommitdiff
path: root/oox
AgeCommit message (Collapse)Author
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi
2012-04-08LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl
2012-04-08gbuild: "use" vs. "add":Michael Stahl
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-07Fix Redundant assignment of "nModToken" in switchJulien Nabet
2012-04-07callcatcher: update and remove newly unused methodsCaolán McNamara
2012-04-07Some cleaning in oox::dump :Julien Nabet
oox::dump::InputObjectBase oox::dump::Output
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *) *{$/\1\2 ( \3 == \4 ) {/' \{\} \;
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-05UniString::CreateFromInt32 -> rtl::OUString::valueOfCaolán McNamara
2012-04-05remove unused code (oox)Petr Vorel
2012-04-02don't leak pDefaultTableStyleCaolán McNamara
2012-04-02n747499: PPTX embedded media playback.Muthu Subramanian
Currently plays the embedded audio files. The image for the audio file seems to be rendered bad, currently.
2012-04-01include guardLuboš Luňák
2012-03-30callcatcher: regenerate unused code listCaolán McNamara
2012-03-29drop extra unused inlines and remains of unconstructable classCaolán McNamara
2012-03-29remove unused code (oox)Petr Vorel
2012-03-29callcatcher: update listCaolán McNamara
2012-03-28remove left-over class stubCaolán McNamara
2012-03-28remove unused code (oox, sc)Petr Vorel
2012-03-28n#751117 oox: make sure position is not lost during VML import of rotationMiklos Vajna
2012-03-28ShapeTypeModel::maFlip: correct bogus doxygen commentMiklos Vajna
2012-03-28n#751117 oox: implement VML import of shape style 'flip'Miklos Vajna
2012-03-28n#751117 oox: implement VML import of v:line tokenMiklos Vajna
2012-03-28n#751117 oox: implement VML import of shape style 'rotation'Miklos Vajna
2012-03-27remove unused code (oox, sc)Petr Vorel
2012-03-26remove unused code (oox)Petr Vorel
2012-03-26oox: fix doxygen syntax to avoid misleading output in ShapeTypeModelMiklos Vajna
2012-03-23.hxx files don't need executable bitsMichael Stahl
2012-03-23.cxx files don't need executable bitsMichael Stahl
2012-03-23n#751573: docx, no mso-fit-shape-to-text means the textbox size is fixedCédric Bosdonnat
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