summaryrefslogtreecommitdiffstats
path: root/editeng
Commit message (Collapse)AuthorAgeFilesLines
...
* fix constness compile errorLuboš Luňák2012-03-294-3/+16
|
* SaveGetObject() is presumably meant to be safe rather than savingLuboš Luňák2012-03-2911-107/+107
|
* I assume the asserts are safer before non-checked accessLuboš Luňák2012-03-291-3/+3
|
* ParaPortionList no longer a child class of DummyParaPortionListDavid Tardon2012-03-291-1/+1
|
* No need to delete ParaPortion outside of the container any more.Kohei Yoshida2012-03-291-4/+1
|
* ContentList no longer a child class of DummyContentList (take 2).Kohei Yoshida2012-03-2916-141/+249
| | | | | | The previous commit was bad as it would cause segfalut on startup. This one is good as far as I can tell.
* Revert "ContentList no longer a child class of DummyContentList."Kohei Yoshida2012-03-2916-247/+139
| | | | This reverts commit ea8f2cbee079932e7f5d9ab646996b472a120c76.
* ContentList no longer a child class of DummyContentList.Kohei Yoshida2012-03-2916-139/+247
|
* remove inline & const method.Kohei Yoshida2012-03-292-7/+14
|
* pRightPortion no longer used.Kohei Yoshida2012-03-281-3/+0
|
* ParaPortionList no longer a child class of DummyParaPortionList.Kohei Yoshida2012-03-2811-120/+206
| | | | | BTW, whoever originally wrote this code obviously didn't like using const keywords.
* template over 3 different types of casts all in one line.Kohei Yoshida2012-03-282-13/+13
|
* Fix tinderbox error & some cleanup.Kohei Yoshida2012-03-283-6/+9
|
* ContentInfoArray is gone.Kohei Yoshida2012-03-284-20/+32
|
* Keep tinderbox happy.Kohei Yoshida2012-03-281-6/+6
|
* No more CharAttribArray.Kohei Yoshida2012-03-282-10/+7
|
* One less use of CharAttribArray.Kohei Yoshida2012-03-284-18/+25
|
* Move away from SV_DECL_PTRARR in CharAttribList.Kohei Yoshida2012-03-2812-359/+425
| | | | This is a huge change. I'm sure I broke something somewhere...
* drop intermediate temporary UniStringsCaolán McNamara2012-03-271-1/+1
|
* Let's hide stuff like this from header..Kohei Yoshida2012-03-272-4/+15
|
* It's cleaner to use copy ctor for cloning.Kohei Yoshida2012-03-272-16/+12
|
* Publicly deriving from STL is not a good idea...Kohei Yoshida2012-03-272-19/+73
|
* UniString removal.Kohei Yoshida2012-03-272-67/+77
|
* We can safely remove this.Kohei Yoshida2012-03-271-6/+0
| | | | | There is no definition given anyway, so its use would've caused a link error.
* Let's not use a macro for this...Kohei Yoshida2012-03-271-8/+8
|
* Translated German class description (thanks to Markus Mohrhard).Kohei Yoshida2012-03-271-7/+5
|
* readUnicodeString can just return the stringCaolán McNamara2012-03-264-5/+7
| | | | | seeing as no-one checks the return value, we don't need the intermediate temporary string
* .hrc files don't need executable bitsMichael Stahl2012-03-235-0/+0
|
* .h files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* chmod -xTor Lillqvist2012-03-211-0/+0
|
* Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann2012-03-141-0/+5
| | | | | | | | | | | | | | ...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.
* Conditional jump or move depends on uninitialised valueCaolán McNamara2012-03-131-16/+14
|
* SvxULSpaceItem: implement contextual spacingMiklos Vajna2012-03-123-0/+13
|
* Replace VARARR_SORT with stdBartosz Kosiorek2012-03-123-35/+25
|
* gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan2012-03-102-2/+2
|
* fold i18npaper into i18nutilCaolán McNamara2012-03-082-2/+2
| | | | | | | | | | It's too small to justify standalone existence. We can accumulate i18n things we link to directly into i18nutil and rework i18npool uno implementions in terms of thin wrappers over i18nutil and prefer linking to i18nutil internally and leave the uno forwarders for use by external components and scripting
* drop dead makefile.mk'sCaolán McNamara2012-03-081-98/+0
|
* remove various unused methods and source filesCaolán McNamara2012-03-072-30/+0
|
* WaE: equality comparison with extraneous parenthesesTor Lillqvist2012-03-031-1/+1
|
* there was the object comparison, not the pointer comparisonIvan Timofeev2012-03-021-1/+10
|
* remove traces of SvxFontTableIvan Timofeev2012-03-021-14/+0
|
* fix memory leakIvan Timofeev2012-03-021-0/+4
|
* WaE: use of logical '&&' with constant operandTor Lillqvist2012-03-021-1/+1
| | | | Surely a bit test is what is intended here.
* More IMPL_LINK_NOARG fixesStephan Bergmann2012-03-011-1/+1
|
* New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann2012-03-015-17/+17
| | | | | ...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
* Remove SvxFontTable and use std::vector insteadNoel Grandin2012-03-013-41/+14
| | | | | | In removing tools/table.hxx usage, remove SvxFontTable and convert to std::vector<SvxFontItem*> because it was only being used as a temporary list, not a map.
* we don't want any of these to be streamed out/in as 64bit valuesCaolán McNamara2012-02-284-24/+24
|
* Removed unused codeSzabolcs Dezsi2012-02-279-61/+0
|
* unusedcode.easy: remove unused codeThomas Arnhold2012-02-242-9/+0
|
* make editeng ByteString freeCaolán McNamara2012-02-231-7/+8
|