summaryrefslogtreecommitdiff
path: root/editeng
AgeCommit message (Collapse)Author
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.
2012-04-11Avoid duplicate symbols & use setUp() and tearDown() for the item pool.Kohei Yoshida
2012-04-11Just use the internal item pool already written for the edit engine.Kohei Yoshida
2012-04-11You *are* fixed.Kohei Yoshida
2012-04-11Set default items to the item pool, do this and that, and now the test passes.Kohei Yoshida
2012-04-11needs ure and base-class setUp does necessary stuffCaolán McNamara
2012-04-11Do this special case search only when the array is large enough.Kohei Yoshida
Otherwise the normal linear search should be sufficient. Eventually we need to use a better algorithm here than this special case handling...
2012-04-11Add the right license header here...Kohei Yoshida
2012-04-11Attempt to add general-purpose unit test for editeng.Kohei Yoshida
But instantiating EditEngine causes segfault. The line is commented out for now.
2012-04-09Killed Another instance of svarray.Kohei Yoshida
2012-04-09Bool changes.Kohei Yoshida
2012-04-09add package deps for resourcesDavid Tardon
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi
2012-04-08LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl
2012-04-08gbuild: "use" vs. "add":Michael Stahl
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
2012-04-08Fix Prefer prefix ++/-- operatorsJulien Nabet
2012-04-06reduce overzealous namingLuboš Luňák
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;