summaryrefslogtreecommitdiffstats
path: root/svx
Commit message (Collapse)AuthorAgeFilesLines
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-067-17/+13
|
* I suspect the logic is supposed to be the other way around.Jan Holesovsky2012-04-061-2/+2
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-0610-33/+33
| | | | | | 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-0616-69/+69
| | | | | | 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-062-3/+3
| | | | | | 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-055-21/+8
|
* callcatcher: update list, add README, remove some newly unused codeCaolán McNamara2012-04-054-27/+0
|
* String::CreateFromInt32 -> OUString::valueOfCaolán McNamara2012-04-051-1/+1
|
* Unused code removal.Winfried Donkers2012-04-052-40/+0
|
* Unused code removal.Santiago Martinez2012-04-052-10/+0
|
* better drawing support for borders of different width, fdo#33634Markus Mohrhard2012-04-042-26/+23
|
* Cleanup some unnecessary #includeMatteo Casalin2012-04-034-3/+2
|
* fdo#44698 settings are under a different menu in Mac OS XAndras Timar2012-04-031-0/+4
|
* Resolves: fdo#48096 torn off popups trigger keyboard focus problemsCaolán McNamara2012-04-022-5/+5
|
* rtl::OUStrings already have a global empty stringCaolán McNamara2012-04-021-3/+1
|
* UniString->rtl::OUString and drop globalsCaolán McNamara2012-04-022-15/+9
|
* remove static objects from static_initialization_and_destruction chainCaolán McNamara2012-04-022-4/+9
|
* remove static objects from static_initialization_and_destruction chainCaolán McNamara2012-04-021-5/+1
|
* unused static objectCaolán McNamara2012-04-021-1/+0
|
* pointer is always non-nullCaolán McNamara2012-04-022-5/+4
|
* removed duplicate includes in svxTakeshi Abe2012-04-0262-90/+1
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-301-17/+18
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-291-30/+30
|
* don't use a global LockListener to avoid startup hit on ctoringCaolán McNamara2012-03-281-7/+7
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-281-8/+7
|
* drop intermediate temporary UniStringsCaolán McNamara2012-03-271-4/+2
|
* UniString to rtl::OUString.Kohei Yoshida2012-03-262-0/+18
|
* readUnicodeString can just return the stringCaolán McNamara2012-03-261-2/+1
| | | | | seeing as no-one checks the return value, we don't need the intermediate temporary string
* .txt files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* .sdi files don't need executable bitsMichael Stahl2012-03-235-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-233-0/+0
|
* .hrc files don't need executable bitsMichael Stahl2012-03-2347-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
|
* .cxx files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* chmod -xTor Lillqvist2012-03-212-0/+0
|
* fdo#45671 set initial color for split buttonsWinfried Donkers2012-03-212-2/+26
|
* remove ToDouble/ToFloatCaolán McNamara2012-03-201-31/+30
|
* reduce UniStringsCaolán McNamara2012-03-203-8/+10
|
* remove extra string castsCaolán McNamara2012-03-204-4/+4
|
* Fix redundant assignment of "nAngle" in switchJulien Nabet2012-03-181-2/+2
|
* workaround broken msvc template instantiationLuboš Luňák2012-03-171-0/+3
|
* correction of typo in commentWinfried Donkers2012-03-161-1/+1
|
* fdo#45671 split button for calc cell border colorWinfried Donkers2012-03-151-0/+3
|
* Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann2012-03-1421-2/+71
| | | | | | | | | | | | | | ...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.
* Related: fdo#46728 it would help to initialize the reference count I supposeCaolán McNamara2012-03-131-0/+1
|
* Resolves: fdo#46728 reference count the overlay managersCaolán McNamara2012-03-1318-114/+171
|
* forward declaration doesn't make any sense, need to see whole definitionCaolán McNamara2012-03-131-5/+0
|