summaryrefslogtreecommitdiff
path: root/sc
AgeCommit message (Collapse)Author
2012-01-07New unit test code for drawing objects.Kohei Yoshida
2012-01-06fdo#36387: Get external references to work with AND and OR.Kohei Yoshida
2012-01-06fdo#44467: Deleting sheets should adjust drawing object pages as well.Kohei Yoshida
Good thing we caught this, because we were also leaking memory by not deleting the deleted sheet instances.
2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz
2012-01-06Removed unnecessary tools/ref.hxx includes.Marcel Metz
2012-01-06Removed unnecessary tools/link.hxx includes.Marcel Metz
2012-01-06Fixed the validation message popup disappearing when scrolling etc.Kohei Yoshida
When the popup goes outside the visible area & get scrolled back in, it would disappear. Also, when setting the hint message on in the dialog and clicking OK should show the popup right away.
2012-01-06Fixed a crash-on-exit, when the validation message is up when closing.Kohei Yoshida
Delete the hint window instnce before the grid windows get deleted, since the hint window is now a child window of one of the grid window instances.
2012-01-06Fix re-calculation of the position of circular drawing objects.Kohei Yoshida
Cell-anchored circular drawing objects would get distorted whenever its bounding rectangle changes, either via insertion / removal of columns / rows, or changing the row height / column width. This commit fixes it by differentiating the validation circles, which needs its own re-calc algorithm, from the normal circular drawing objects.
2012-01-06Merge branch 'feature/gbuild_extensions'Michael Stahl
Conflicts: extensions/source/ole/servreg.cxx extensions/source/plugin/util/makefile.mk postprocess/packcomponents/makefile.mk postprocess/prj/build.lst tail_build/prj/build.lst
2012-01-06add warning message if you close unsaved referenced documentMarkus Mohrhard
2012-01-06Limit the number of initial sheets to 1 to 1024 in the UI.Kohei Yoshida
Note that you can still have more than 1024 sheets afterwards. This only applies to new and empty documents.
2012-01-06The data range may not always start at row 0, use 'n' prefix for int.Kohei Yoshida
2012-01-06Update behavior and translation last record to prev recordLior Kaplan
2012-01-06make ReadUniOrByteString return a stringCaolán McNamara
2012-01-05fdo#36851, bnc#737190: Make the data validation popup more reliable.Kohei Yoshida
Previously, the data validation message popup was not sticking on reliably on Linux, and flickers very bad on Windows. That was due to the painting conflict between the top-most frame window and the grid window. By making the message popup window a child window of the grid window, it paints more reliably.
2012-01-06add inital part for XDatabaseRange test, related fdo#44167Markus Mohrhard
2012-01-06correctly update absolute refs in range names if pointing to copied areaMarkus Mohrhard
2012-01-05getPropertyMap can return a reference instead of a pointerCaolán McNamara
2012-01-05simplify code a bitMarkus Mohrhard
2012-01-05remove unneeded debug statementsMarkus Mohrhard
2012-01-05handle relative refs in name dialogs correctlyMarkus Mohrhard
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
Hello lo-devs, this patch series removes a lot of unnecessary includes for the various tools header. The patches without suffix should be applied to the core repository, the .binfilter.patch suffix should be applied to the binfilter repository. I've tested the build with the configuration --enable-binfilter --enable-dbgutil --enable-debug, is this sufficient or did I miss another important configuration, that enables some conditional compiled code? I've only build this on linux-x86_64, but the patch also touches some of the mac specific code like fpicker/source/aqua/SalAquaFilePicker.mm so it would be maybe a good idea to test this patch. regards Marcel Metz
2012-01-05use the docshell to change tab attributes. don't do it directlyNorbert Thiebaud
2012-01-05add a comphelper::string::getTokenCountCaolán McNamara
suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
2012-01-05add mode-lines to some new filesCaolán McNamara
2012-01-05WaE and build fixes for OSL_DEBUG_LEVEL == 2Caolán McNamara
2012-01-05WaE: invalid conversion from 'const ScToken*' to 'ScToken*'David Tardon
2012-01-05Removed the restriction to always pass Calc A1 formatted data ranges.Kohei Yoshida
This change also fixes the bug where changing data series ranges was impossible to do when the formula syntax was not Calc A1.
2012-01-04Register chart data ranges via tokens rather than string.Kohei Yoshida
Doing it this way avoids having to re-generate the data ranges in Calc A1 before passing it to the chart backend in Calc. We need this in order to remove the silly restriction that forces us to always pass data range strings in Calc A1 format, which is error-prone. This is also necessary in order to fix the bug that prevents editing data ranges of an existing chart when the formula syntax is something other than Calc A1.
2012-01-04New unit test to test jumping to precedent / dependent cells.Kohei Yoshida
The test doesn't do the actual jumping, but it only tests the validity of the destination range(s).
2012-01-04move static casts outside loopsLaurent Godard
some little perf. improvements on saving spreadsheets
2012-01-04remove entry from unsaved ref container if doc is savedMarkus Mohrhard
2012-01-04don't show generic error message if a better one is available, fdo#43911Markus Mohrhard
2012-01-04Easyhack fdo#38831 remove SvStringsBrad Sowden
Remove SvStrings definition and obsolete #defines.
2012-01-04Easyhack fdo#38831 remove SvStringsBrad Sowden
Remove unused variables.
2012-01-04fix dep to svx/globlmn.hrc inside of tail_buildNorbert Thiebaud
2012-01-03Get the reference jump feature to work with relative references.Kohei Yoshida
By 'reference jump feature' I mean Ctrl-[ and Ctrl-].
2012-01-02Clean non English strings in the codeLior Kaplan
we do translation differently.
2011-12-31Correct ARCCOSH()'s parameter descriptionKorrawit Pruegsanusak
2011-12-28Same expression for comparison and for assignmentJulien Nabet
2011-12-28use of bool instead of sal_boolPierre-André Jacquod
2011-12-28fdo42286 better solution: extend and shrink end of row if neededPierre-André Jacquod
2011-12-27fix ScDatabaseRangeObj test, fdo#43312Markus Mohrhard
2011-12-27better handling for unsaved external referencesMarkus Mohrhard
Now references to unsaved documents can be created in the sheet and not only through copy/paste This fixes the problem that otherwise editing these refs resulted in #REF
2011-12-27fix dbglevel=2 build in scMarkus Mohrhard
2011-12-26missing pointer check in new multiline input code, fdo#43856Markus Mohrhard