summaryrefslogtreecommitdiff
path: root/editeng
AgeCommit message (Collapse)Author
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan
2012-03-08fold i18npaper into i18nutilCaolán McNamara
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
2012-03-08drop dead makefile.mk'sCaolán McNamara
2012-03-07remove various unused methods and source filesCaolán McNamara
2012-03-03WaE: equality comparison with extraneous parenthesesTor Lillqvist
2012-03-02there was the object comparison, not the pointer comparisonIvan Timofeev
2012-03-02remove traces of SvxFontTableIvan Timofeev
2012-03-02fix memory leakIvan Timofeev
2012-03-02WaE: use of logical '&&' with constant operandTor Lillqvist
Surely a bit test is what is intended here.
2012-03-01More IMPL_LINK_NOARG fixesStephan Bergmann
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-03-01Remove SvxFontTable and use std::vector insteadNoel Grandin
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.
2012-02-28we don't want any of these to be streamed out/in as 64bit valuesCaolán McNamara
2012-02-27Removed unused codeSzabolcs Dezsi
2012-02-24unusedcode.easy: remove unused codeThomas Arnhold
2012-02-23make editeng ByteString freeCaolán McNamara
2012-02-23WaE: nWidth might be unused uninitializedCaolán McNamara
2012-02-23fdo#45560: Fixed docx textbox borders style and width importCédric Bosdonnat
2012-02-21use a for loopIvan Timofeev
2012-02-21convert svxrtf.hxx in editeng module from table.hxx to std::mapNoel Grandin
2012-02-19Get rid of size() == 0Elton Chung
2012-02-18unusedeasy.code: remove SvxFont::DrawTextThomas Arnhold
2012-02-18Remove unused codeElton Chung
2012-02-17clean up logicMariusz Dykierek
2012-02-15tweak "Convert tools/table.hxx in editeng/forbiddencharacterstable.hxx..."Ivan Timofeev
* remove 'const' from GetForbiddenCharacters * CharInfoMap -> Map * pInf -> pForbiddenCharacters * remove 'inline' from the function defined within the class definition * some code simplifications
2012-02-15Convert tools/table.hxx in editeng/forbiddencharacterstable.hxx to std::mapNoel Grandin
2012-02-14Remove unused code.Santiago Martinez
2012-02-13Remove unused codeElton Chung
2012-02-10fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan
2012-02-08Added READMEs for modules which used to be in libs-coreJosh Heidenreich
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud
2012-02-05fix debug buildIvan Timofeev
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