summaryrefslogtreecommitdiffstats
path: root/xmloff
Commit message (Collapse)AuthorAgeFilesLines
* Some cppcheck cleaningJulien Nabet2012-05-201-3/+3
| | | | Change-Id: Ic30cdeffabec1eb1a6c153ac450a3d28064ef534
* Fix Prefer prefix ++/-- operators for non-primitive typesJulien Nabet2012-05-193-4/+4
| | | | Change-Id: I4ebb1027151c3bc34f81fb1e13de6c4c5cfed54d
* removed unused const rtl::OUStringTakeshi Abe2012-05-186-10/+0
| | | | Change-Id: If02be864f958de96ae1c54fe575b1828410390b1
* some more ConstAsciiString behind OSL_ENSURECaolán McNamara2012-05-171-2/+2
| | | | Change-Id: Ic93ec84ce62234364d233a9188a65439e88a79fe
* merge the 5 ConstAsciiString duplicate classes togetherCaolán McNamara2012-05-177-123/+73
| | | | | | | | a) merge them together and move it into comphelper b) turn it into a POD rather than having vast amounts of destructors registered into the cxa_atexit chain Change-Id: I04d3b9d7804f8e233013c916df9d617a0f84f96a
* completely nutso merge bustage since 2004Caolán McNamara2012-05-161-4/+0
| | | | | | | useless unused fat global objects since 146f73bcfa48ddddd18a1eb449aaa5ddd43d2dd2 Change-Id: I2a5f54d34b498a64b658f158f98269f16e2e71f8
* removed unused static rtl::OUStringTakeshi Abe2012-05-142-3/+0
| | | | Change-Id: I5a097beaaeb30214ed6071bba1297e551291922b
* make gbuild the default assumption of build.plBjoern Michaelsen2012-04-291-1/+0
| | | | | | | | this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
* fdo#48969: switch units in Converter::convertDoubleMichael Stahl2012-04-201-1/+1
| | | | | | | | The factor here is used to divide, so the parameters have to be switched; this has always been broken but probably before 3ca2bef76886450058d1667703aeafe4c2e456c3 nothing called this. This also reverts 7bf1fa3757133f12cf6ca624f8cee6ba5363e7d8 because that was a workaround for the problem in the wrong place.
* loop with erase(begin()) looks sort of inefficientMichael Stahl2012-04-182-5/+4
|
* Convert SV_DECL_PTRARR_SORT_DEL to boost::ptr_setNoel Grandin2012-04-181-7/+6
|
* Convert SV_DECL_PTRARR_SORT_DEL to boost:ptr_setNoel Grandin2012-04-181-14/+11
|
* Convert SV_DECL_PTRARR to std::vectorNoel Grandin2012-04-181-15/+11
|
* Convert SV_DECL_PTRARR_DEL to boost::ptr_vectorNoel Grandin2012-04-181-14/+10
|
* Convert SV_DECL_PTRARR_DEL to boost::ptr_vectorNoel Grandin2012-04-181-12/+12
|
* Convert SV_DECL_PTRARR to std::vectorNoel Grandin2012-04-181-8/+6
|
* Convert SV_DECL_PTRARR to std::vectorNoel Grandin2012-04-181-9/+6
|
* Convert SV_DECL_PTRARR to std::vectorNoel Grandin2012-04-181-9/+6
|
* Convert SV_DECL_PTRARR_DEL to boost::ptr_vectorNoel Grandin2012-04-181-21/+18
|
* fix windows buildIvan Timofeev2012-04-111-1/+1
|
* Export chart X,Y errorbars.Rafael Dominguez2012-04-111-53/+51
| | | | | | - Remove using older properties to get errorbars data. - Only export X errorbars when using ODF VERSION >= 1.2. - Use the dimension attribute to set errorbar direction.
* Move exporting chart errorbars code to its own method.Rafael Dominguez2012-04-111-66/+90
|
* Partial fix for bug 30711Brennan Vincent2012-04-102-4/+94
|
* char[] -> const char[].Jan Holesovsky2012-04-101-1/+1
|
* Replaced a few equal calls with ==Szabolcs Dezsi2012-04-084-38/+22
|
* LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl2012-04-081-1/+1
|
* gbuild: "use" vs. "add":Michael Stahl2012-04-083-5/+5
| | | | | | | | | 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)
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-0615-51/+31
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-0611-35/+35
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-066-10/+10
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-1/+1
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \;
* no use is made of FmFormObj::m_nTypeCaolán McNamara2012-04-054-77/+0
|
* UniString::CreateFromInt32 -> rtl::OUString::valueOfCaolán McNamara2012-04-051-2/+2
|
* removed duplicate #includesTakeshi Abe2012-04-0417-21/+0
| | | | in vbahelper / writerfilter / writerperfect / xmlhelp / xmloff / xmlscript / xmlsecurity
* callcatcher: remove some unused codeCaolán McNamara2012-04-022-22/+3
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-302-6/+9
|
* Remove unused code in xmloff.Santiago Martinez2012-03-262-29/+0
|
* ditch some UniStrings and intermediate temporariesCaolán McNamara2012-03-262-12/+18
|
* Compatibility option for incorrect relative moves after closePath (fdo#47406)Fridrich Štrba2012-03-266-13/+20
|
* Fix fdo#47406 incorrect relative moves after closePathThorsten Behrens2012-03-261-0/+10
| | | | | | I missed the fact that odf export still uses the old exporter in xmloff/source/draw/xexptran.cxx, which was not fixed wrt. the update of current position in basegfx/source/polygon/b2dsvgpolypolygon.cxx
* .dtd files don't need executable bitsMichael Stahl2012-03-232-0/+0
|
* .xcl files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* .sce files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* .component files don't need executable bitsMichael Stahl2012-03-232-0/+0
|
* .hxx files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* .h files don't need executable bitsMichael Stahl2012-03-232-0/+0
|
* chmod -xTor Lillqvist2012-03-212-0/+0
|
* map of kind+name -> new-nameCaolán McNamara2012-03-202-107/+44
|
* Prefer prefix ++/-- operators for non-primitive typesJulien Nabet2012-03-181-1/+1
|
* Some cppcheck cleaningJulien Nabet2012-03-182-5/+5
|