summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-01-28replace obsolete "master" branch with README that points at new repoHEADmaster-deletedmasterMichael Stahl2419-998074/+20
2011-08-06We convert 0x0B's to <w:br/>'s later in RunText().FINAL_MASTERmaster-backupJan Holesovsky1-1/+0
2011-08-06Add a comment based on the Caolan's explanation.Jan Holesovsky1-0/+2
2011-08-06Fix field values in export to docxTroy Rollo1-2/+4
Prior to this patch, fields were being exported to docx file with the field value being the name of the field. This patch changes it to export the field value as the field value.
2011-08-05convert deprecated ConvertToUnicode to rtl::OUStringCaolán McNamara1-11/+11
2011-08-05definition and use inside same debug levelCaolán McNamara2-2/+2
2011-08-05Emacs modeline compatible with vim's oneTakeshi Abe2-0/+2
2011-08-04[PATCH] Get rid of SvULongs in writerMaciej Rumianowski7-95/+80
Replace SvULongs with std::vector. In SwHTMLWriter simultaneously replace aOutlineMarks with boost::ptr_vector.
2011-08-04state *what* format is problematic in the OSL_FAILCaolán McNamara1-1/+4
2011-08-04replace ByteString::ConvertToUnicodeCaolán McNamara4-11/+14
2011-08-04callcatcher: remove unused methodsCaolán McNamara2-23/+0
2011-08-03SwFilterBase::ReadUnicode is dubious, luckily unusedCaolán McNamara1-11/+0
2011-08-03ByteString::ConvertToUnicode->rtl::OUString ctorCaolán McNamara1-2/+7
2011-08-03Related: #i38880# crash in new field codeCaolán McNamara1-2/+5
2011-08-02MSWordExportBase::ExportDocument: check if we have a DocShellMiklos Vajna1-1/+1
This fixes a crash during RTF export invoked by copy&paste, as the called constructor would unconditionally dereference the DocShell's pointer since commit 183c9723dce0296baa0a38220199a1aa0e9f52ca.
2011-08-02catch by const referenceCaolán McNamara1-4/+4
2011-08-02bPgChpLevel is always false, so remove if (bPgChpLevel) branchesCaolán McNamara3-27/+1
2011-08-02ByteString::CreateFromInt32 -> rtl::OStringBuffer::appendCaolán McNamara6-223/+307
2011-08-02convert to rtl::OString[Buffer] and simplifyCaolán McNamara2-43/+69
2011-08-02ImportRTF: use the new uno filter in experimental modeMiklos Vajna1-0/+39
2011-08-02SwCache: fix build with dbglevel=2Miklos Vajna1-1/+2
2011-08-01Partially revert "Removed dead code"Miklos Vajna2-0/+107
This partially reverts commit 1e2c9be36ba9f94a27b3aa73c87ceb3d52e100dc, CellInfo::toString and WW8TableCellGrid::toString is still needed with dbglevel>1.
2011-07-30Add consistent Emacs and vim mode linesTor Lillqvist22-5/+39
2011-07-29Related: fdo#34184 don't claim that all errors are due to invalid addressCaolán McNamara1-1/+1
2011-07-29findbar: Add seporator between the Prev/Next and Serch & ReplaceJan Holesovsky4-4/+8
2011-07-29Get rid of these non-printable charsThomas Arnhold35-148/+0
2011-07-29Removed dead codeMarc-Andre Laverdiere2-149/+0
2011-07-29Fixed invalid array dereferenceMarc-Andre Laverdiere1-14/+15
2011-07-29Fixes for segfault on an edge case + translationsMarc-Andre Laverdiere1-16/+14
Fixed segfault due to reading an invalid pointer returned by GetStyle Translated some of the comments Added some proofing against similar bugs from GetStyle that may happen in other edge cases Fixed compile warning
2011-07-29Fixed valgrind errorMarc-Andre Laverdiere1-6/+7
Complained about switching on an unitialized value
2011-07-29Fixed invalid array bounds read in ww8scan.cxxMarc-Andre Laverdiere1-1/+2
2011-07-29Fixed invalid pointer dereferenceMarc-Andre Laverdiere1-3/+3
2011-07-28Merge branch 'master' of git://anongit.freedesktop.org/libreoffice/writerJan Holesovsky4-32/+37
2011-07-28Merge commit 'libreoffice-3.4.2.3'Jan Holesovsky4-34/+47
Conflicts: sw/qa/core/data/ww8/pass/CVE-2008-4841-1.doc sw/source/core/docnode/ndcopy.cxx sw/source/filter/ww8/ww8par.cxx sw/source/filter/ww8/ww8par.hxx sw/source/filter/ww8/ww8scan.cxx sw/source/filter/ww8/ww8scan.hxx
2011-07-28Fix fdo#36868 - doc import list numbering errorTroy Rollo1-0/+2
This patch appears to be fix fdo#36868. The problem is that the paragraph style was never being assigned an outline list level. The saved file did not have an sprmPOutLvl for that paragraph (although it did have one for the level 0 style), just an sprmPIlvl and an sprmPIlfo. Therefore there was no call to SwWW8ImplReader::Read_POutLvl to set nOutlineLevel.
2011-07-28Resolves: fdo#35439 survive missing libdba gracefully with errorboxCaolán McNamara1-14/+22
2011-07-28Resolves: fdo#37693 it really is a LineBorder not a LineBorder2Caolán McNamara1-13/+8
2011-07-28use DrawUndoGuard to turn off undo for draw layer for duration of its scopeCaolán McNamara1-5/+5
2011-07-27ByteString->rtl::OStringBufferCaolán McNamara2-33/+62
2011-07-27don't use an invalidated iteratorLuboš Luňák1-3/+4
2011-07-27Resolves: fdo#36631 don't crash on undo of ole2 insertCaolán McNamara1-0/+5
2011-07-27catch by const referenceCaolán McNamara9-38/+40
2011-07-27Related: fdo#35404 treat failed column same as non-existing columnCaolán McNamara1-6/+12
2011-07-27ByteString::CreateFromInt32->rtl::OStringBuffer::appendCaolán McNamara1-8/+8
2011-07-27Kills those pesky non-printable chars.Kohei Yoshida2-13/+0
2011-07-27Let's not make these methods inline....Kohei Yoshida2-67/+63
2011-07-27Replace SV_*_PTRARR_SORT with boost::ptr_map.Kohei Yoshida4-76/+40
2011-07-26Replace SV_*_PTRARR with boost::ptr_vector.Kohei Yoshida4-33/+16
2011-07-27findbar: Show the "Search and Replace" button in the FindBar by default.Jan Holesovsky4-4/+4
2011-07-26Revert "fix for bnc#693477 ensure table alignment is preserved"Noel Power1-2/+1
This reverts commit 95351a519bec2833f5d936c20e3916a4e283b0f6. <sigh> after testing on another machine I think this is indeed font related, there is I think a genuine issue with the tablewidth and column width getting truncated with the 'FULL' setting but... it appears this isn't the fix for this bug.