summaryrefslogtreecommitdiff
path: root/editeng
AgeCommit message (Collapse)Author
2012-04-28Some cppcheck cleaningJulien Nabet
Change-Id: Idf2e6e3e2870429541b3b5c225470cc80a13c102
2012-04-26fdo#46805 - special-case appending items to autocorrect listsMichael Meeks
2012-04-25remove some unused codeJose Santiago Jimenez Sarmiento
2012-04-24WaE: mixing comparison of bool and sal_BoolCaolán McNamara
2012-04-24Removed unused code from editengVicent Vendrell
Committer:Vicent Vendrell <viventa1@yahoo.es> On branch master modified: editeng/source/editeng/editdoc.cxx modified: editeng/source/editeng/editdoc.hxx modified: unusedcode.easy
2012-04-20CharAttribList::OptimizeRanges: de-optimize to not crash so fastMichael Stahl
Crashes on import of bugdoc from fdo#48969 with Assertion `n < this->size()' failed. (regression from b35980d9b28f1e3985f94238f7d8c9962f654bd0)
2012-04-20fdo#47436: Fixed crash while opening odt file.Dezsi Szabolcs
2012-04-19Revert "Use boost::scoped_ptr for this."Kohei Yoshida
This reverts commit a4bc804627b8b21506e9b86fa54d2f7d2525e43e.
2012-04-19Revert "Let's use boost::scoped_ptr for this."Kohei Yoshida
This reverts commit e1520a9d6a9f9bcfcaa332d54892040fe54776c2.
2012-04-19Pass const reference.Kohei Yoshida
2012-04-18String & bool cleanup.Kohei Yoshida
2012-04-18Non-inlining constructors.Kohei Yoshida
2012-04-17no TYPEINFO for edit undo objects.Kohei Yoshida
2012-04-17Make more methods of ImpEditEngine private to avoid direct access.Kohei Yoshida
2012-04-17This doesn't have to be public.Kohei Yoshida
2012-04-17Removed all references to ImpEditEngine from all of edit undo classes.Kohei Yoshida
2012-04-17None of the edit undo classes access ImpEditEngine directly.Kohei Yoshida
2012-04-16Remove the last undo friend from ImpEditEngine.Kohei Yoshida
2012-04-16EditUndoSplitParaKohei Yoshida
2012-04-16EditUndoSplitParaKohei Yoshida
2012-04-16Same with EditUndoConnectParas.Kohei Yoshida
2012-04-16Same with EditUndoDelContent.Kohei Yoshida
2012-04-16same with EditUndoRemoveChars.Kohei Yoshida
2012-04-16EditUndoInsertCharts is no longer a friend of ImpEditEngine.Kohei Yoshida
2012-04-16Have EditUndo also return EditEngine*.Kohei Yoshida
This is the first step toward having the undo classes use EditEngine instead of ImpEditEngine.
2012-04-16EdtAutoCorrDoc no longer a friend of ImpEditEngine.Kohei Yoshida
2012-04-16Let's use boost::scoped_ptr for this.Kohei Yoshida
2012-04-16EditHTMLParser is no loger a friend of ImpEditEngine.Kohei Yoshida
2012-04-16Use boost::scoped_ptr for this.Kohei Yoshida
2012-04-16EditRTFParser no longer a friend of ImpEditEngine.Kohei Yoshida
2012-04-16upgrade GetValueTextByPos family to rtl::OUStringCaolán McNamara
2012-04-16Corret size_t format specifierStephan Bergmann
2012-04-14Resolves: fdo#48683 nice crash when hitting DELJulien Nabet
2012-04-14WaE fixJulien Nabet
2012-04-14Really fix the build.Kohei Yoshida
2012-04-14Keep tinderbox happy.Kohei Yoshida
2012-04-14This must be const.Kohei Yoshida
2012-04-14Export this to get it to build in forms.Kohei Yoshida
2012-04-13EE_APPEND now has to be the max value of size_t.Kohei Yoshida
2012-04-13Another svarray to kill.Kohei Yoshida
2012-04-13ImpEditView no longer a friend of ImpEditEngine.Kohei Yoshida
Be careful whom you befriend with...
2012-04-13EditView is no longer a friend of ImpEditEngine.Kohei Yoshida
2012-04-13SafeGetObject() no longer needed since GetObject() does the same thing.Kohei Yoshida
2012-04-13UniString to rtl::OUString.Kohei Yoshida
2012-04-13setup/teardown default component context once before/after all testsCaolán McNamara
avoids the problems of dangling uno singletons invalidated after the first dispose and the chain of other singletons that don't expect to need to re-initialize, etc. reenable editeng cppunit test inherit i18npool cppunit test from unotest base drop LibreOfficeProtector, do "throwable" work in setUp/tearDown not in ctors/dtors
2012-04-12partially revert the editeng singleton stuff to get build to completeCaolán McNamara
2012-04-12remove formfeedsThomas Arnhold
2012-04-12Handle the correct deletion order of EditDLL in the base class.Kohei Yoshida
Turns out that this change affected all cppunit runs.
2012-04-11Remove the TODO comment that's no longer relevant.Kohei Yoshida
2012-04-11We need to delete EditDLL before de-initialize vcl to avoid crash.Kohei Yoshida
Without manually releasing the EditDLL singleton instance, it gets deleted *after* the cppunit does its cleanup, which de-initializes VCL. The problem is, when the EditDLL instance is destroyed, its member GlobalEditData instance deletes the OutputDevice instance that it owns, which in turn accesses font caches in VCL. But by the time we reach that point, VCL is already de-initialized, hence the problem.