summaryrefslogtreecommitdiff
path: root/sc
AgeCommit message (Collapse)Author
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-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
2011-12-26move OSL_FAIL to correct locationMarkus Mohrhard
2011-12-23fix copy/paste with whole column/rowMarkus Mohrhard
this fix should restore the old copy/paste behavior in calc and still only paste relevant entries to external programs
2011-12-23adjust absolute refs to copied areas correctlyMarkus Mohrhard
2011-12-23sc test : enhance importSheet tests regarding namedRangesLaurent Godard
2011-12-22ScChangeActionTable conversion: Yet another correction.Marcel Metz
2011-12-22remove some unused codeCaolán McNamara
2011-12-22ByteString->rtl::OStringCaolán McNamara
2011-12-21ScChangeActionTable conversion: another correctionEike Rathke
2011-12-21ScChangeActionTable conversion: small correctionsMichael Stahl
2011-12-21fdo#38832 Replace ScChangeActionTable with std::mapMarcel Metz
2011-12-21Revert this to build on msvc 2008Korrawit Pruegsanusak
2011-12-21tweak for pre language-defect #77Caolán McNamara
2011-12-21disentangle Read/WriteByteString OUString variantsCaolán McNamara
The ones which use a definite 8-bit encoding read/write pascal-style strings with a 16bit length prefix. The ones which use a definite 16-bit encoding read/write pascal-style UTF-16 strings with a 32bit length prefix, i.e. not ByteStrings at all The "I dunno" ones might be UTF-16 strings or 8-bit strings, depending on the charset. Rename to ReadUniOrByteString like the other similar horrors to flag this misery
2011-12-21convert ReadByteString/WriteByteString from ByteString to OStringCaolán McNamara
Nobody ever used the return values anyway, so for reading just return the string and for writing the number of bytes written Doesn't need to be members, make standalone functions Rename to read_lenPrefixed_uInt8s_ToO[U]String and write_lenPrefixed_uInt8s_FromO[U]String, lengthy, but much less unambiguous, seeing as a lot of users of it don't seem to be aware that they read/write pascal-style length prefixed strings, which isn't surprising given the apparent simplicity of their original name. added a unit test
2011-12-21needs more work firstCaolán McNamara
This reverts commit 92f396733ebc518bcb7a9eae2dd3169d333b82b9.