summaryrefslogtreecommitdiff
path: root/svx/source
AgeCommit message (Collapse)Author
2012-04-12n#717947: Fixed pdf export (of images).Muthu Subramanian
2012-04-10Remove VERBOSE part 3Rob Snelders
2012-04-09fdo43752: PPTX import fix affected odp imports.Muthu Subramanian
Related bugs: n#719989, n#719997
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
2012-04-06I suspect the logic is supposed to be the other way around.Jan Holesovsky
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/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \;
2012-04-05no use is made of FmFormObj::m_nTypeCaolán McNamara
2012-04-05callcatcher: update list, add README, remove some newly unused codeCaolán McNamara
2012-04-05String::CreateFromInt32 -> OUString::valueOfCaolán McNamara
2012-04-05Unused code removal.Winfried Donkers
2012-04-05Unused code removal.Santiago Martinez
2012-04-04better drawing support for borders of different width, fdo#33634Markus Mohrhard
2012-04-03Cleanup some unnecessary #includeMatteo Casalin
2012-04-03fdo#44698 settings are under a different menu in Mac OS XAndras Timar
2012-04-02Resolves: fdo#48096 torn off popups trigger keyboard focus problemsCaolán McNamara
2012-04-02rtl::OUStrings already have a global empty stringCaolán McNamara
2012-04-02UniString->rtl::OUString and drop globalsCaolán McNamara
2012-04-02remove static objects from static_initialization_and_destruction chainCaolán McNamara
2012-04-02remove static objects from static_initialization_and_destruction chainCaolán McNamara
2012-04-02unused static objectCaolán McNamara
2012-04-02pointer is always non-nullCaolán McNamara
2012-04-02removed duplicate includes in svxTakeshi Abe
2012-03-30remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara
2012-03-29remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara
2012-03-28don't use a global LockListener to avoid startup hit on ctoringCaolán McNamara
2012-03-28remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara
2012-03-27drop intermediate temporary UniStringsCaolán McNamara
2012-03-26UniString to rtl::OUString.Kohei Yoshida
2012-03-23.hrc files don't need executable bitsMichael Stahl
2012-03-23.h files don't need executable bitsMichael Stahl
2012-03-23.cxx files don't need executable bitsMichael Stahl
2012-03-21fdo#45671 set initial color for split buttonsWinfried Donkers
2012-03-20remove ToDouble/ToFloatCaolán McNamara
2012-03-20reduce UniStringsCaolán McNamara
2012-03-20remove extra string castsCaolán McNamara
2012-03-18Fix redundant assignment of "nAngle" in switchJulien Nabet
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-13Related: fdo#46728 it would help to initialize the reference count I supposeCaolán McNamara
2012-03-13Resolves: fdo#46728 reference count the overlay managersCaolán McNamara
2012-03-12remove usage of RTL_CONSTASCII_STRINGPARAMLuboš Luňák
2012-03-12fix SvxShowCharSetItem leakCaolán McNamara
2012-03-09fdo#45671 fix for transparent colour split buttonWinfried Donkers
2012-03-08Convert from tools/table.hxx to std::map in SvxMacroTableDtorNoel Grandin
In this case, we also convert from storing pointers to storing the items directly because SvxMacroTableDtor completely controls the lifecycle of the SvxMacro objects it contains. Also add an operator== to SvxMacroTableDtor and remove the out-of-line implementations of equals from two other places.
2012-03-08fdo#45682 split button for writer table line colorWinfried Donkers
2012-03-06remove misc. unused codeMichael Meeks
2012-03-06ClickLightHdl doesn't need to be a linkCaolán McNamara
and ClickLightHdl always takes a non-NULL argument, so NULL test is pointless. Turn it into a normal method that takes a reference. GetLightSource can be const. Nothing calls DoubleClickHdl, remove it.
2012-03-06fdo#45688: Split button for Calc cell font colorWinfried Donkers
2012-03-04Removed dead codeMarc-André Laverdière-Papineau