Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-28 | SwPosition: 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-28 | SwFmtAchor: bit of style cleanup | Michael Stahl | |
2011-11-28 | add defined but missing SfxInterface strings | Caolán McNamara | |
2011-11-28 | Fix Kashida justification when there is no Kashida glyph | Khaled Hosny | |
2011-11-28 | Hide function pointers | Daisuke Nishino | |
Removed some redundant "this->", sbergman@redhat.com. | |||
2011-11-28 | Undo short -> xub_StrLen change (fixes warning on Mac OS X). | Stephan Bergmann | |
2011-11-28 | s/weather/whether/ where appropriate | Korrawit Pruegsanusak | |
2011-11-28 | typos fixing | Korrawit Pruegsanusak | |
2011-11-27 | remove precompiled_xxx.hxx/cxx | Norbert Thiebaud | |
2011-11-27 | remove pch from the include list | Norbert Thiebaud | |
2011-11-27 | remove include of pch header from sw | Norbert Thiebaud | |
2011-11-27 | remove pre-compiled header support in gbuild and gbuildified module | Norbert Thiebaud | |
2011-11-27 | typos fixing | Korrawit Pruegsanusak | |
2011-11-27 | RtfSdrExport: remove unused includes | Miklos Vajna | |
2011-11-27 | RtfImportFilter: remove unused includes | Miklos Vajna | |
2011-11-27 | RtfExportFilter: remove unused includes | Miklos Vajna | |
2011-11-27 | RtfExport: remove unused includes | Miklos Vajna | |
2011-11-25 | Remove unnecessary tools/string includes | August Sodora | |
2011-11-25 | Translate German comments and translate some english comments spelling errors | Philipp Weissenbacher | |
2011-11-25 | make gbuild makefiles run independant of pwd again | Bjoern Michaelsen | |
2011-11-25 | gsl_getSystemTextEncoding -> osl_getThreadTextEncoding | David Tardon | |
2011-11-24 | rename and move mathml oox support classes in oox to better places | Luboš Luňák | |
2011-11-24 | ooxml mathml import - first very basic implementation | Luboš Luňák | |
still needs a number of cleanups (and handling more of course) | |||
2011-11-24 | initial (very hacky) work on mathml ooxml import | Luboš Luňák | |
This commit needs to be generally reworked for upstream, but it more or less works. | |||
2011-11-24 | remove executable bit on a .cxx file | Luboš Luňák | |
2011-11-24 | remove private copy ctor, base class SwClient is noncopyable | Ivan Timofeev | |
2011-11-24 | check glossary path for sanity | Caolán McNamara | |
2011-11-24 | Fix logic inversion | Daisuke Nishino | |
2011-11-24 | better tranlation for "a al WW" :-) | Michael Meeks | |
2011-11-24 | Fix non-DBG_UTIL build. | Jan Holesovsky | |
2011-11-24 | more German transaltions in docdesc.cxx | Philipp Weissenbacher | |
2011-11-24 | RtfAttributeOutput: remove unnecessary includes | Miklos Vajna | |
2011-11-24 | SwIndex, SwIndexReg::~SwIndexReg: deploy assert() | Michael Stahl | |
2011-11-24 | SwIndex: remove global EmptyIndexArray | Michael Stahl | |
2011-11-24 | SwIndex: cleanup: add Init method | Michael Stahl | |
2011-11-24 | SwIndex: clean up Remove duplication | Michael Stahl | |
2011-11-24 | SwIndex: style cleanup | Michael Stahl | |
2011-11-24 | sw: remove debug instance counting | Michael 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-24 | sw: remove some debugging cruft | Michael Stahl | |
2011-11-24 | sw: 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-24 | SwShell{,Table}Crsr: remove pointless overrides of IsSelOvr | Michael Stahl | |
2011-11-24 | SwLinePortion::Check is useless | Michael Stahl | |
2011-11-24 | sw: replace abuses of OSL_DEBUG_LEVEL with DBG_UTIL | Michael Stahl | |
OSL_DEBUG_LEVEL is set by make debug=t, which should never result in ABI incompatible objects. | |||
2011-11-23 | fix some stray typos | Caolán McNamara | |
2011-11-23 | remove various EraseLeadingAndTrailingChars | Caolán McNamara | |
2011-11-23 | fix for pesky pre-language-defect-fix gcc 4.0.1 | Caolán McNamara | |
2011-11-23 | fixed the German translations | Petr Mladek | |
Ränder means margins Umrandung means borders | |||
2011-11-23 | Translated German comments to English. | Philipp Weissenbacher | |
2011-11-23 | std::map::erase takes a nonconst iterator | Caolán McNamara | |
2011-11-23 | Changed 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. |