summaryrefslogtreecommitdiffstats
path: root/editeng
Commit message (Collapse)AuthorAgeFilesLines
* Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2012-01-2112-31/+30
| | | | | | | | | 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.
* fdo#39428 Remove/audit SvStream operator>>/<<(long)Keith McRae2012-01-182-5/+10
| | | | | Replaced calls to operator<<(long) with sal::static_int_cast<sal_Int32> Replaced calls to operator>>(long) with operator>>(sal_Int32)
* Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz2012-01-173-5/+5
|
* Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz2012-01-163-5/+5
|
* force users of WriteByteStringLine to explictly denote encodingCaolán McNamara2012-01-161-1/+1
|
* force users of ReadByteStringLine to explictly denote encodingCaolán McNamara2012-01-161-2/+2
|
* SV_DECL_PTRARR_DEL->std::vectorAugust Sodora2012-01-144-31/+12
|
* Remove useless macroAugust Sodora2012-01-141-1/+0
|
* fix for gcc 4.7: unable to find string literal operatorMatúš Kukan2012-01-141-1/+1
|
* valgrind: ditch some unused codeCaolán McNamara2012-01-122-25/+0
|
* Remove an unused SvStringsDtorAugust Sodora2012-01-111-1/+0
|
* Remove _SVSTDARR_STRINGSISORTDTORAugust Sodora2012-01-103-12/+0
|
* These can be staticAugust Sodora2012-01-101-16/+14
|
* Remove unused table declarationAugust Sodora2012-01-101-1/+0
|
* simplify LocalFileHelper::ConvertURLToPhysicalNameCaolán McNamara2012-01-101-1/+1
|
* editeng: fix STL conversion dfbf0cabfa8310502e19642d56c746cc0d454d27Michael Stahl2012-01-101-14/+32
| | | | | | | - 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
* simplify CharClassCaolán McNamara2012-01-092-9/+9
| | | | | | | 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
* make measurement units localizableAndras Timar2012-01-071-6/+6
|
* Removed unnecessary tools/debug.hxx includes.Marcel Metz2012-01-067-7/+1
|
* Removed unnecessary tools/link.hxx includes.Marcel Metz2012-01-061-1/+0
|
* make ReadUniOrByteString return a stringCaolán McNamara2012-01-065-15/+13
|
* tweak this a littleCaolán McNamara2012-01-051-1/+2
|
* getPropertyMap can return a reference instead of a pointerCaolán McNamara2012-01-053-4/+4
|
* Remove Fill() usageChristina Rossmanith2012-01-051-3/+4
|
* Removed unnecessary tools includes.Marcel Metz2012-01-051-1/+0
|
* Removed unnecessary tools includes.Marcel Metz2012-01-051-0/+1
|
* Removed unnecessary tools includes.Marcel Metz2012-01-051-1/+0
|
* Removed unnecessary tools includes.Marcel Metz2012-01-052-2/+0
| | | | | | | | | | | | | | | | | 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
* add a comphelper::string::getTokenCountCaolán McNamara2012-01-051-1/+2
| | | | | | suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
* resurrect autocorrectionIvan Timofeev2011-12-271-44/+38
|
* DECLARE_TABLE->boost::ptr_mapAugust Sodora2011-12-242-112/+118
|
* std::map* -> std::mapDavid Tardon2011-12-242-9/+6
|
* make the line work as intended againDavid Tardon2011-12-241-1/+1
| | | | At least I suppose memory corruption is not intended behavior .-)
* Fix the build so that this is recognized as an initializer listAugust Sodora2011-12-231-1/+1
|
* DECLARE_TABLE->std::mapAugust Sodora2011-12-232-17/+13
|
* SV_DECL_VARARR->std::vectorAugust Sodora2011-12-2311-90/+42
|
* Fix for fdo43460 Part XIV getLength() to isEmpty()Gustavo Buzzatti Pacheco2011-12-2312-23/+23
| | | | | | Part XIV Modules drawinglayer, dtrans, editeng
* SV_DECL_VARARR->std::vectorAugust Sodora2011-12-236-150/+97
|
* callcatcher: Remove unused codeAugust Sodora2011-12-224-121/+0
|
* Correctly handle empty paragraphs in slideshow animation fdo#43684Thorsten Behrens2011-12-221-0/+21
| | | | | | 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.
* Revert "aw084: #i108052# Added code to mimic old behaviour and call user ↵Thorsten Behrens2011-12-221-21/+0
| | | | | | | | | 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.
* sw: Improved document comparison based on RSIDs.Tzvetelina Tzeneva2011-12-224-1/+77
|
* ByteString->rtl::OStringCaolán McNamara2011-12-221-7/+7
|
* tweak for pre language-defect #77Caolán McNamara2011-12-211-3/+3
|
* disentangle Read/WriteByteString OUString variantsCaolán McNamara2011-12-216-26/+26
| | | | | | | | | | | | The ones which use a definite 8-bit encoding read/write pascal-style strings with a 16bit length prefix. The ones which use a definite 16-bit encoding read/write pascal-style UTF-16 strings with a 32bit length prefix, i.e. not ByteStrings at all The "I dunno" ones might be UTF-16 strings or 8-bit strings, depending on the charset. Rename to ReadUniOrByteString like the other similar horrors to flag this misery
* convert ReadByteString/WriteByteString from ByteString to OStringCaolán McNamara2011-12-211-5/+4
| | | | | | | | | | | | | | | | | Nobody ever used the return values anyway, so for reading just return the string and for writing the number of bytes written Doesn't need to be members, make standalone functions Rename to read_lenPrefixed_uInt8s_ToO[U]String and write_lenPrefixed_uInt8s_FromO[U]String, lengthy, but much less unambiguous, seeing as a lot of users of it don't seem to be aware that they read/write pascal-style length prefixed strings, which isn't surprising given the apparent simplicity of their original name. added a unit test
* needs more work firstCaolán McNamara2011-12-211-4/+5
| | | | This reverts commit 92f396733ebc518bcb7a9eae2dd3169d333b82b9.
* bah, need to tweak for pre c++0xCaolán McNamara2011-12-216-26/+26
| | | | This reverts commit d00fc0e293852cfc019ffaffa65bee327397677b.
* disentangle Read/WriteByteString OUString variantsCaolán McNamara2011-12-216-26/+26
| | | | | | | | | | | | The ones which use a definite 8-bit encoding read/write pascal-style strings with a 16bit length prefix. The ones which use a definite 16-bit encoding read/write pascal-style UTF-16 strings with a 32bit length prefix, i.e. not ByteStrings at all The "I dunno" ones might be UTF-16 strings or 8-bit strings, depending on the charset. Rename to ReadUniOrByteString like the other similar horrors to flag this misery
* convert ReadByteString/WriteByteString from ByteString to OStringCaolán McNamara2011-12-211-5/+4
| | | | | | | | | | | | | | | | | Nobody ever used the return values anyway, so for reading just return the string and for writing the number of bytes written Doesn't need to be members, make standalone functions Rename to read_lenPrefixed_uInt8s_ToO[U]String and write_lenPrefixed_uInt8s_FromO[U]String, lengthy, but much less unambiguous, seeing as a lot of users of it don't seem to be aware that they read/write pascal-style length prefixed strings, which isn't surprising given the apparent simplicity of their original name. added a unit test