summaryrefslogtreecommitdiff
path: root/sw
AgeCommit message (Collapse)Author
2011-11-28SwPosition: handle un-registered SwIndex:Michael Stahl
For frames anchored at paragraph, SwFmtAnchor::SetAnchor() creates an anchor SwPosition that points at the SwTxtNode but with a SwIndex that is not registered at the SwTxtNode. SwXFrame::getAnchor() then creates a bookmark from that, which asserts in the SwIndex comparison operators. Work around this by adding ugly special handling for the case of 2 positions having their SwNodeIndex point to the same node but one of them not having its SwIndex at the node. It seems it is best to do this in SwPosition operators, as the SwIndex operators lack the context to know if this inconsistency is allowed, and it is unknown whether the bookmarks sort code is the only path that triggers this assert.
2011-11-28SwFmtAchor: bit of style cleanupMichael Stahl
2011-11-28add defined but missing SfxInterface stringsCaolán McNamara
2011-11-28Fix Kashida justification when there is no Kashida glyphKhaled Hosny
2011-11-28Hide function pointersDaisuke Nishino
Removed some redundant "this->", sbergman@redhat.com.
2011-11-28Undo short -> xub_StrLen change (fixes warning on Mac OS X).Stephan Bergmann
2011-11-28s/weather/whether/ where appropriateKorrawit Pruegsanusak
2011-11-28typos fixingKorrawit Pruegsanusak
2011-11-27remove precompiled_xxx.hxx/cxxNorbert Thiebaud
2011-11-27remove pch from the include listNorbert Thiebaud
2011-11-27remove include of pch header from swNorbert Thiebaud
2011-11-27remove pre-compiled header support in gbuild and gbuildified moduleNorbert Thiebaud
2011-11-27typos fixingKorrawit Pruegsanusak
2011-11-27RtfSdrExport: remove unused includesMiklos Vajna
2011-11-27RtfImportFilter: remove unused includesMiklos Vajna
2011-11-27RtfExportFilter: remove unused includesMiklos Vajna
2011-11-27RtfExport: remove unused includesMiklos Vajna
2011-11-25Remove unnecessary tools/string includesAugust Sodora
2011-11-25Translate German comments and translate some english comments spelling errorsPhilipp Weissenbacher
2011-11-25make gbuild makefiles run independant of pwd againBjoern Michaelsen
2011-11-25gsl_getSystemTextEncoding -> osl_getThreadTextEncodingDavid Tardon
2011-11-24rename and move mathml oox support classes in oox to better placesLuboš Luňák
2011-11-24ooxml mathml import - first very basic implementationLuboš Luňák
still needs a number of cleanups (and handling more of course)
2011-11-24initial (very hacky) work on mathml ooxml importLuboš Luňák
This commit needs to be generally reworked for upstream, but it more or less works.
2011-11-24remove executable bit on a .cxx fileLuboš Luňák
2011-11-24remove private copy ctor, base class SwClient is noncopyableIvan Timofeev
2011-11-24check glossary path for sanityCaolán McNamara
2011-11-24Fix logic inversionDaisuke Nishino
2011-11-24better tranlation for "a al WW" :-)Michael Meeks
2011-11-24Fix non-DBG_UTIL build.Jan Holesovsky
2011-11-24more German transaltions in docdesc.cxxPhilipp Weissenbacher
2011-11-24RtfAttributeOutput: remove unnecessary includesMiklos Vajna
2011-11-24SwIndex, SwIndexReg::~SwIndexReg: deploy assert()Michael Stahl
2011-11-24SwIndex: remove global EmptyIndexArrayMichael Stahl
2011-11-24SwIndex: cleanup: add Init methodMichael Stahl
2011-11-24SwIndex: clean up Remove duplicationMichael Stahl
2011-11-24SwIndex: style cleanupMichael Stahl
2011-11-24sw: remove debug instance countingMichael Stahl
There are various classes that in DBG_UTIL mode count their instances with a global variable, and give each instance a unique serial number. The purpose of this exercise is somewhat unclear to me. This removes the instance counting from: SwNumberTree, SwIndex, SwNodeIndex, SwNumRule
2011-11-24sw: remove some debugging cruftMichael Stahl
2011-11-24sw: enable more debug code:Michael Stahl
Whole bunch of code is #if OSL_DEBUG_LEVEL > 1, reduce that to > 0 so more assertions are active when building --enable-debug or --enable-dbgutil.
2011-11-24SwShell{,Table}Crsr: remove pointless overrides of IsSelOvrMichael Stahl
2011-11-24SwLinePortion::Check is uselessMichael Stahl
2011-11-24sw: replace abuses of OSL_DEBUG_LEVEL with DBG_UTILMichael Stahl
OSL_DEBUG_LEVEL is set by make debug=t, which should never result in ABI incompatible objects.
2011-11-23fix some stray typosCaolán McNamara
2011-11-23remove various EraseLeadingAndTrailingCharsCaolán McNamara
2011-11-23fix for pesky pre-language-defect-fix gcc 4.0.1Caolán McNamara
2011-11-23fixed the German translationsPetr Mladek
Ränder means margins Umrandung means borders
2011-11-23Translated German comments to English.Philipp Weissenbacher
2011-11-23std::map::erase takes a nonconst iteratorCaolán McNamara
2011-11-23Changed sal/log.h -> sal/log.hxx, drop _S from C++ streaming log macros.Stephan Bergmann
A compile time check ensures the common case of streaming just a plain C-style string literal still produces reasonably compact call-site code. The format-string variants are still available in sal/detail/log.h, but only to be used in obsolete osl/diagnose.h etc., and going to be removed again eventually.