summaryrefslogtreecommitdiff
path: root/editeng
AgeCommit message (Collapse)Author
2012-02-03WrongList::TextInserted: fix STL crashMichael Stahl
vector iterators and insert don't mix well (regression from dfbf0cabfa8310502e19642d56c746cc0d454d27)
2012-02-03editeng: convert some DBG_ASSERTsMichael Stahl
2012-02-02resolved fdo#42784 BorderLine with only InnerWidth set does not workEike Rathke
2012-02-01Some cppcheck cleaningJulien Nabet
2012-01-31SWAPLONG->OSL_SWAPDWORDCaolán McNamara
2012-01-30fdo#44981 - remove obsolete SWAPLONG macrosNoel Grandin
2012-01-30refactor ConvertLineEndCaolán McNamara
2012-01-27SvxBorderLine::GuessLinesWidths: use SAL_N_ELEMENTSMichael Stahl
2012-01-27fdo#38542: SvxBorderLine::GuessLinesWidths:Michael Stahl
Importing style:border-line-width="0.002cm 0.088cm 0.141cm" (which older OOo/LO apparently could write) fails, because GuessLinesWidths can't find a matching style (result: standard "double" border, 3 equal width parts). Try to create a custom BorderWidthImpl of type DOUBLE instead, that preserves the individual widths.
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.
2012-01-18fdo#39428 Remove/audit SvStream operator>>/<<(long)Keith McRae
Replaced calls to operator<<(long) with sal::static_int_cast<sal_Int32> Replaced calls to operator>>(long) with operator>>(sal_Int32)
2012-01-17Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz
2012-01-16Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz
2012-01-16force users of WriteByteStringLine to explictly denote encodingCaolán McNamara
2012-01-16force users of ReadByteStringLine to explictly denote encodingCaolán McNamara
2012-01-14SV_DECL_PTRARR_DEL->std::vectorAugust Sodora
2012-01-14Remove useless macroAugust Sodora
2012-01-14fix for gcc 4.7: unable to find string literal operatorMatúš Kukan
2012-01-12valgrind: ditch some unused codeCaolán McNamara
2012-01-11Remove an unused SvStringsDtorAugust Sodora
2012-01-10Remove _SVSTDARR_STRINGSISORTDTORAugust Sodora
2012-01-10These can be staticAugust Sodora
2012-01-10Remove unused table declarationAugust Sodora
2012-01-10simplify LocalFileHelper::ConvertURLToPhysicalNameCaolán McNamara
2012-01-10editeng: fix STL conversion dfbf0cabfa8310502e19642d56c746cc0d454d27Michael Stahl
- iterators should be compared with !=, not < - iterator invalidation on erase should be avoided by using the iterator that is returned by erase - in WrongList::operator== only one iterator was incremented
2012-01-09simplify CharClassCaolán McNamara
multiple variants of toUpper (etc) some that take a non-const OUString or String and modify it some that take a const OUString or String and return a new one some that take part of a const OUString or String and return a new one
2012-01-07make measurement units localizableAndras Timar
2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz
2012-01-06Removed unnecessary tools/link.hxx includes.Marcel Metz
2012-01-06make ReadUniOrByteString return a stringCaolán McNamara
2012-01-05tweak this a littleCaolán McNamara
2012-01-05getPropertyMap can return a reference instead of a pointerCaolán McNamara
2012-01-05Remove Fill() usageChristina Rossmanith
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
Hello lo-devs, this patch series removes a lot of unnecessary includes for the various tools header. The patches without suffix should be applied to the core repository, the .binfilter.patch suffix should be applied to the binfilter repository. I've tested the build with the configuration --enable-binfilter --enable-dbgutil --enable-debug, is this sufficient or did I miss another important configuration, that enables some conditional compiled code? I've only build this on linux-x86_64, but the patch also touches some of the mac specific code like fpicker/source/aqua/SalAquaFilePicker.mm so it would be maybe a good idea to test this patch. regards Marcel Metz
2012-01-05add a comphelper::string::getTokenCountCaolán McNamara
suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
2011-12-27resurrect autocorrectionIvan Timofeev
2011-12-24DECLARE_TABLE->boost::ptr_mapAugust Sodora
2011-12-24std::map* -> std::mapDavid Tardon
2011-12-24make the line work as intended againDavid Tardon
At least I suppose memory corruption is not intended behavior .-)
2011-12-23Fix the build so that this is recognized as an initializer listAugust Sodora
2011-12-23DECLARE_TABLE->std::mapAugust Sodora
2011-12-23SV_DECL_VARARR->std::vectorAugust Sodora
2011-12-23Fix for fdo43460 Part XIV getLength() to isEmpty()Gustavo Buzzatti Pacheco
Part XIV Modules drawinglayer, dtrans, editeng
2011-12-23SV_DECL_VARARR->std::vectorAugust Sodora
2011-12-22callcatcher: Remove unused codeAugust Sodora
2011-12-22Correctly handle empty paragraphs in slideshow animation fdo#43684Thorsten Behrens
Fix a problem with empty paragraphs, that previously did not get proper end-of-para / end-of-line markup, thus the slideshow mis- counting them when getting index-based animation targets.
2011-12-22Revert "aw084: #i108052# Added code to mimic old behaviour and call user ↵Thorsten Behrens
layout link when empty paragraph is rendered" This reverts commit 9d40293f147212120ce2a2e960c1ef23168a428b. The change was causing extra paragraph markers to be emitted, e.g. leading to fdo#43837 and fdo#43684.