summaryrefslogtreecommitdiff
path: root/sw
AgeCommit message (Collapse)Author
2012-03-05Sprinkle DISABLE_SCRIPTING ifdefsTor Lillqvist
2012-03-03Avoid temporary rtl::OUStringJulien Nabet
2012-03-03SwXTextField::setPropertyValue: simplify a bit:Michael Stahl
It looks like the second call to PutValue() was accidentally inserted in f462a51fcc8e50f3255d2d8c98a4c6408dce725e. Also, pDoc is valid when pField is.
2012-03-03unofield.cxx: fix indentation a littleMichael Stahl
2012-03-03fdo#42073: sw: expand all text fields when setting properties:Michael Stahl
SwXTextField::setPropertyValue: call Expand() for all text fields Fixes getPresentation returning stale values. (regression from CWS sw34bf01, 8485708f3001fca132c3353c464fe7187ef62bed) Also, without this the text formatting does not actually update and the new content is not displayed until some other unrelated editing operation.
2012-03-03fdo#39694: SwTxtFld: do expand the field in the ctorMichael Stahl
While only the text formatting is able to expand all fields correctly, this is still good enough for many field types and fixes a race condition when the field value is requested before layout is finished. (regression from CWS sw34bf01, 8485708f3001fca132c3353c464fe7187ef62bed)
2012-03-02fix buildCaolán McNamara
2012-03-02Convert SvPtrarr usage to std::vectorNoel Grandin
In GetBookmarks and Writer_Impl pFontRemoveLst field. Remove unused field pBkmkArr in Writer_Impl class. Convert SwBookmarkNodeTable to std::multimap, greatly simplifying code.
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-01fdo#45671 calc cell background color simplified code for split buttonWinfried Donkers
2012-03-01WaE: use of logical '||' with constant operandTor Lillqvist
Until now the code has by accident added a property with the attribute MAYBEVOID (which is that one which has the value 1), while the intention obviously was to use BOUND|REMOVABLE. Whether this has caused unintended consequences, or been harmless, and whether this fix now then will cause unintended consequences, no idea.
2012-03-01WaE: equality comparison with extraneous parenthesesTor Lillqvist
2012-03-01WaE: expression result unusedTor Lillqvist
2012-03-01Fix what seems to be a copy/paste error: initialising a field with itselfTor Lillqvist
2012-03-01testcase for fdo#46662Miklos Vajna
2012-03-01clean-up sw's filters-testMarkus Mohrhard
filters-test does not initialize vcl, for these sort of tests use macros_test
2012-03-01Compare char* with string literal via strcmpStephan Bergmann
...as found by Clang and reported by DenverCoder9 on IRC.
2012-02-28we don't want any of these to be streamed out/in as 64bit valuesCaolán McNamara
2012-02-29Drop comparison with empty rtl::OUStringTakeshi Abe
2012-02-28we don't want \'longs\' hereCaolán McNamara
2012-02-28log some more useful information on invalid sprmsCaolán McNamara
2012-02-28convert some low hanging fruitCaolán McNamara
2012-02-28replace AllocBuffer in ww8 filterCaolán McNamara
2012-02-28SfxStyleSheet needs a default ctorCaolán McNamara
due to use of ImplInheritanceHelper2 SfxStyleSheet needs a default ctor, though its never called. rearrange things a little so we can have an empty ctor without pulling in a bunch of code which is never executed
2012-02-28Some more work for --disable-database-connectivityRiccardo Magliocchetti
2012-02-27SwSectionFrm: initialised members are happy membersMichael Stahl
Valgrind complained about uninitialised use in SwSectionFrm::_CheckClipping (sectfrm.cxx:1111).
2012-02-27SwRootFrm::~SwRootFrm: refactor:Michael Stahl
Since CWS swlayoutrefactoring the SwRootFrms are destroyed with SwDoc::IsInDtor not set. This can cause at least reads of freed SwRootFrm members when executing the dtors of SwRootFrm base class SwLayoutFrm calling into SwRootFrm::GetPageAtPos. Prevent this scenario by: - moving the implementation of SwRootFrm base class dtors to new methods SwFrm::Destroy and SwLayoutFrm::Destroy - calling SwFrm::Destroy and SwLayoutFrm::Destroy explicitly before SwRootFrm members are freed
2012-02-27Writer/Options: Move Comments 10 units upStefan Knorr (astron)
2012-02-27fdo44516 cleanup of direct use of color in codeWinfried Donkers
2012-02-27s/interpreters/scripting/Tor Lillqvist
2012-02-27Fix build (few missing {'s in the translations).Jan Holesovsky
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27translate german commentsNicolas Christener
2012-02-27Translated german code comments to englishDavid Vogt
2012-02-27Translated german code comments to englishDavid Vogt
2012-02-27Resolves: fdo#46038 don't copy page styles into temporary clipboard docCaolán McNamara
writer rtf export has a nasty pgdsctbl extension sd rtf import has nasty "if its got a table keyword in it its a table" logic Classically we never put our styles into the temporary clipboard, so fastest and safest fix is to simply skip putting the page styles into it.
2012-02-27fix MacOSX tinderbox buildCaolán McNamara