summaryrefslogtreecommitdiff
path: root/sw
AgeCommit message (Collapse)Author
2012-03-12use string literal OUString overloadsLuboš Luňák
2012-03-12this massive rigmarole is just to map a msword author id to a writer author idCaolán McNamara
2012-03-11Some cppcheck cleaningJulien Nabet
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan
2012-03-09fdo#45962: fix context menu key yanking cursor out of header/footerMichael Stahl
For the "context menu" key VCL synthesizes a cursor position that is the center of the window, hence likely to be in the document body. When SwEditWin::Command calls lcl_CheckHeaderFooterClick, it then moves the document view cursor; prevent that by only calling that for actual mouse events. (regression from a6176612ff1a6a142a68964b2c0834d28125fc45)
2012-03-09add regression test for writerMarkus Mohrhard
use the hidden layout dump export filter to export the state of the layout and compare it against a reference file Still a work in progress.
2012-03-09sw: doxygen comments for SwTxtFmtColl, SwFlowFrm, SwTxtFrmMiklos Vajna
2012-03-09update code a bitCaolán McNamara
2012-03-08Look for SCRIPTING in BUILD_TYPETor Lillqvist
2012-03-08sw: SwTxtFrm formatting, cleaned up useless debug code and translated commentsCédric Bosdonnat
2012-03-08sw layout dump: replaced pointers by FrmIds and added frame boundsCédric Bosdonnat
2012-03-08different types in std::min on 32bitCaolán McNamara
2012-03-08docufld.cxx: Apple gcc can't find min(sal_Int32, int)Michael Stahl
2012-03-08Convert from tools/table.hxx to std::map in SvxMacroTableDtorNoel Grandin
In this case, we also convert from storing pointers to storing the items directly because SvxMacroTableDtor completely controls the lifecycle of the SvxMacro objects it contains. Also add an operator== to SvxMacroTableDtor and remove the out-of-line implementations of equals from two other places.
2012-03-08convert to OUString to I can use SAL_WARNCaolán McNamara
2012-03-08fdo#43424: Comparing empty document with attached one crashes LOSzabolcs Dezsi
2012-03-08Fixed crash when renaming AutoTextSzabolcs Dezsi
2012-03-08Resolves: fdo#46939 don't rename autotext when source and dest are the sameCaolán McNamara
2012-03-08Resolves: fdo#40686 dyaLinePitch only valid between [1-31680]Caolán McNamara
2012-03-08fdo#45682 split button for writer table line colorWinfried Donkers
2012-03-0864bit Truncated pointer used as an unique 32bit idCaolán McNamara
2012-03-08tidy up SwBreakItCaolán McNamara
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-08de-uno-ize ScriptTypeDetectorCaolán McNamara
leave a UnoScriptTypeDetector implementation that points to the trivial ScriptTypeDetector for external consumers, e.g. sdext
2012-03-08ditch SW_XBREAKITER defineCaolán McNamara
2012-03-08tidy up WW8FormulaControl, with knock on results elsewhereCaolán McNamara
2012-03-08Fix bug in commit ad9960ffeb25f31ce4b1f819f909f1eb9ad6d7ddNoel Grandin
My previous patch converting SvPtrarr usage to std::vector had a bug, (spotted by Ivan timofeev.i.s@gmail.com) where it called multimap.find instead of multimap.equal_range.
2012-03-07We just want to know if this ole object is already exported or notCaolán McNamara
So it's merely the knowledge of having exported this object already that we need to know in order to elide re-exporting it. This code is still 64bit unsafe, as the nPictureId has to be a unique 32bit value for each object, so using the pointer as the key is horribly dubious, but this should be the same as the original code.
2012-03-07sw: tweak comment translationsMichael Stahl
037d14ce and following
2012-03-07Fix MSVC compilation error: can't assign a const char* to StringTor Lillqvist
2012-03-07convert SwWW8ImplReader::simpleAddTextToParagraph to SAL_INFO()Miklos Vajna
2012-03-06repair the "No Fill" button which sets a transparent background in WriterIvan Timofeev
see commit 836d98646203e0d9d3916571ed55d6572c2cb3dc
2012-03-06fdo#45671 writer par. bg color simplified codeWinfried Donkers
2012-03-06Fix fdo#38207 and also hide another option in Writer/WebStefan Knorr (astron)
2012-03-06silence SolarMutex not locked spewCaolán McNamara
2012-03-06wrong types used here, breaks 64bit bigendianCaolán McNamara
2012-03-06SwColumnPage::LinkStubTimeout doesn't need to be a linkCaolán McNamara
2012-03-06SwTOXStylesTabPage::LinkStubModifyHdl doesn't need to be a linkCaolán McNamara
2012-03-05Sprinkle more DISABLE_SCRIPTING ifdefsTor Lillqvist
2012-03-05WaE: unused variable in the DISABLE_SCRIPTING caseTor Lillqvist
2012-03-05Related: rhbz#799630 survive unknown/broken nIdctHint valuesCaolán McNamara
2012-03-05remove RTL_CONSTASCII_USTRINGPARAM usageLuboš Luňák
2012-03-05sw: CheckFields: oops, forgot to close the documentMichael Stahl
2012-03-05fdo#39694, fdo#42073: add junit test for theseMichael Stahl
2012-03-05fdo#39694: add test documentJuergen Steinhilber
2012-03-05RtfAttributeOutput::FlyFrameGraphic: don't try to compare a null pointerMiklos Vajna
2012-03-05i#118986 RTF: reduce memory usage when exporting large graphicsMiklos Vajna
Delay the call to FlyFrameGraphic() till we can write the result to the stream without buffering in memory; 1.048GB -> 330.1MB memory usage with the bugdoc.
2012-03-05make ExportPICT() and WriteHex() be able to write to a streamMiklos Vajna
2012-03-05introduce RtfStringBufferMiklos Vajna
It's a wrapper around OStringBuffer to handle export of graphics more efficiently.
2012-03-05this can be just a pointer as wellMiklos Vajna