summaryrefslogtreecommitdiff
path: root/sc/source/ui/docshell/docfunc.cxx
AgeCommit message (Collapse)Author
2011-11-27remove include of pch header from scNorbert Thiebaud
2011-11-24change ScRangeName's container to boost::ptr_mapMarkus Mohrhard
2011-11-23remove ScRangeName::findByNameMarkus Mohrhard
this method was mmisused and is the source for some "bugs" we don't allow case sensitive storage of range names and therefore it does not amke sense to search by case sensitive names, use ScRangeName::findByUpperName instead Especially the uno implementation did behave wrongly and allowed to create two names that were identicall for the model
2011-11-23ManageNames: make global undo work again with dialogMarkus Mohrhard
2011-11-10ScRangeData aName to OUStringLaurent Godard
2011-11-07String->OUString in ScDocument and follow upMarkus Mohrhard
2011-11-06callcatcher: update and remove some more unused methodsCaolán McNamara
2011-10-26add uno part for local range namesMarkus Mohrhard
you can now use e.g. thisComponent.sheets(0).namedRanges
2011-10-26add local range names to ScDocFuncMarkus Mohrhard
2011-09-27Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann
2011-09-22just silence the auto_ptr deprecations in isolationCaolán McNamara
2011-09-12Some attempts to remove the 8-param variant of PostPaint().Kohei Yoshida
But there are way too many codes calling that one. Maybe someday...
2011-09-11fix fdo#40590 stop abusing regular string token for XML importEike Rathke
During XML import formulas of defined names and conditional formatting were remembered as regular svString tokens that then later were retrieved without quotes for compilation. This didn't go along with the new ScRangeData::CompileUnresolvedXML() that recreates the formula string from an already tokenized form of the formula. Introduced FormulaToken::AddStringXML() with ocStringXML to sort those out and removed the IsImportingXML() hack from FormulaCompiler::AppendString(), the ocStringXML case is handled in FormulaCompiler::CreateStringFromToken().
2011-09-06merge area does not need to be increased if a shadow is attachedMarkus Mohrhard
2011-08-30More string conversion around ScDocumentLoader.Kohei Yoshida
2011-08-26String to rtl::OUString.Kohei Yoshida
2011-08-25sal_Bool -> bool in ScTableMarkus Mohrhard
2011-08-25crash when modifying a defined name (and other places as well)Eike Rathke
In ScRangeName::insert() the underlying ::boost::ptr_set_adapter::insert(p) takes ownerwhip of p and in the case it can't insert it deletes the object. So, if ScRangeName::insert() returns false the object where p pointed to is gone. Adapted various places.
2011-07-05yet more iterator->const_iteratorCaolán McNamara
2011-07-05some warning clean-upMarkus Mohrhard
2011-07-05change remaining manual loops to ScMarkData::iteratorMarkus Mohrhard
2011-06-15add local range names to ScNamePasteDlgMarkus Mohrhard
2011-06-11Some cppcheck cleaningJulien Nabet
2011-05-27Replace DBG_* with OSL_* in sc/source/uiJacek Wolszczak
2011-05-24fix for fdo#37548: InsertNames->InsertAll doesn't insert anythingMarkus Mohrhard
2011-05-03fdo#36051: Eliminated the hang due to removal of autofill undo object.Kohei Yoshida
An artifact of the old code, which appears to do nothing meaningful today was performing an incredibly slow operation upon destruction of the autofill undo object. Removed it, and also removed several other methods and data members that were used only in that removed code.
2011-04-26n#689442: Don't forget to create undo object for normal merging.Kohei Yoshida
2011-03-21Fix seg faults on sheet deletion.Kohei Yoshida
Sometimes a simple sheet removal causes segfault in certain types of documents. Not always reproducible, but this fix is certainly safer. (n#680272) Signed-off-by: Noel Power <nopower@novell.com>
2011-03-18Merge remote-tracking branch 'origin/integration/dev300_m101'Jan Holesovsky
Conflicts: chart2/source/controller/main/UndoManager.cxx chart2/source/tools/RegressionCurveHelper.cxx sc/inc/address.hxx sc/inc/attrib.hxx sc/inc/bigrange.hxx sc/inc/callform.hxx sc/inc/cell.hxx sc/inc/chartarr.hxx sc/inc/chartlis.hxx sc/inc/chgtrack.hxx sc/inc/collect.hxx sc/inc/compiler.hxx sc/inc/detdata.hxx sc/inc/document.hxx sc/inc/fillinfo.hxx sc/inc/olinetab.hxx sc/inc/prnsave.hxx sc/inc/queryparam.hxx sc/inc/sc.hrc sc/inc/scabstdlg.hxx sc/inc/table.hxx sc/inc/validat.hxx sc/inc/zforauto.hxx sc/source/core/data/documen2.cxx sc/source/core/data/document.cxx sc/source/core/data/table1.cxx sc/source/core/tool/address.cxx sc/source/core/tool/token.cxx sc/source/filter/excel/frmbase.cxx sc/source/filter/excel/impop.cxx sc/source/filter/excel/xename.cxx sc/source/filter/inc/formel.hxx sc/source/filter/inc/xename.hxx sc/source/filter/xml/xmlexprt.cxx sc/source/filter/xml/xmlnexpi.cxx sc/source/filter/xml/xmlnexpi.hxx sc/source/ui/dbgui/filtdlg.cxx sc/source/ui/inc/docfunc.hxx sc/source/ui/inc/namedlg.hxx sc/source/ui/namedlg/namedlg.cxx sc/source/ui/src/namedlg.src
2011-03-15Implement undo and redo for real.Kohei Yoshida
2011-03-15Added skeleton for undo of all range names, global and local.Kohei Yoshida
2011-03-15Implement ModifyAllRangeNames(), minus undo.Kohei Yoshida
2011-03-15Store all range names from the dialog to the document.Kohei Yoshida
But I have yet to implement ScDocFunc::ModifyAllRangeNames().
2011-03-10Merge commit 'ooo/DEV300_m101' into integration/dev300_m101Kohei Yoshida
2011-03-05Removed the Insert() method; let's use insert() across the board.Kohei Yoshida
2011-03-05More on adjusting for ScRangeName's new API.Kohei Yoshida
2011-03-05Identified and tagged all places where I need to modify.Kohei Yoshida
2011-03-05Removed SearchName() in favor of findByName().Kohei Yoshida
2011-03-02Actually this will just do....Kohei Yoshida
2011-03-02Fixed the "jump to precedents" and "jump to dependents" functions.Kohei Yoshida
2011-03-02Move DBG_ERROR to OSL_FAILThomas Arnhold
2011-03-01Remove bogus comments.Guillaume Poussel
2011-02-15Remove this weird recalc level construct. Let's keep it simple.Kohei Yoshida
2011-02-11Cleaned up RowHidden() and ColHidden() calls.Kohei Yoshida
There were two versions of each; let's just keep one and remove the other.
2011-02-07removetooltypes01: Rebase to DEV300m99Carsten Driesner
2011-01-28Replace SvShorts with std::vectorNigel Hawkins
2011-01-28undoapi: pulled and merged DEV300.m98Frank Schoenheit [fs]
2011-01-21removetooltypes01: Rebase to DEV300m98Carsten Driesner
2011-01-17removetooltypes01: #i112600# remove tooltypes from scMikhail Voytenko
2011-01-17Remove some dead codeThomas Arnhold