summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-01-05add mode-lines to .idl filesCaolán McNamara
2012-01-05add mode-lines to some new filesCaolán McNamara
2012-01-05don't inherit from ByteStringCaolán McNamara
2012-01-05callcatcher: drop some unused methodsCaolán McNamara
2012-01-05catch by const refCaolán McNamara
2012-01-05WaE and build errors with OSL_DEBUG_LEVEL == 2Caolán McNamara
2012-01-05better to have test for isEmpty firstCaolán McNamara
2012-01-05stray trailing ;Caolán McNamara
2012-01-05regenerate list under OSL_DEBUG_LEVEL=2Caolán McNamara
2012-01-05WaE and build fixes for OSL_DEBUG_LEVEL == 2Caolán McNamara
2012-01-05do not announce if nothing is done (without langs)David Tardon
2012-01-05build and pack MediaWiki extension's help localizationsAndras Timar
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-04compile nss against the Mac OSX SDKChristian Lohmaier
nss-3.12.8/mozilla/security/coreconf/Darwin.mk claims gcc would pass syslibroot according to passed -isysroot parameter, hence let's try it for now, although I'm not 100% confident in this statement. libs that get linked without syslibroot include libsqlite3.dylib - and that is a known troublemaker…
2012-01-04sax: this had to be accidentally added when mergingMatúš Kukan
2012-01-04make these variables staticMatúš Kukan
2012-01-04build and pack NLPSolver help localizationsAndras Timar
2012-01-04extension help localizer help functionsAndras Timar
2012-01-04Page Break: fixed position of tab in RTL and added dirty hack for freezesCédric Bosdonnat
2012-01-04Make the apk dirent functions work properlyTor Lillqvist
We must build a directory tree structure corresponding to the files in the .apk, and use that then in lo_apk_opendir()/readdir(). We can't just return the same subdirectory once for each time we come across an entry that has it as a prefix in the zip directory. Use the BSD-licensed "uthash" library (just one .h file actually) from http://uthash.sourceforge.net/ .
2012-01-04extensions: cast unused parameters to voidMichael Stahl
2012-01-04Header/Footer: switch cursor between header and footer using the cursorCédric Bosdonnat
This fixes commit cce76e658af88813e17dea4f04388a29d7e582df.
2012-01-04extensions: cast unused parameters to voidMichael Stahl
Apparently omitting parameter names is not valid C.
2012-01-04Online update: Introduce inst:gitid to check exactly if we are the same.Jan Holesovsky
This allows to feed updates via a static .xml in a controlled environment.
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-04fpicker: fix makefile typoMichael Stahl
2012-01-04canvas: work around NOMINMAX windows breakageMichael Stahl
2012-01-04get rid of obsolete pathdelimiter escapeChristian Lohmaier
2012-01-04gbuild: macosx.mk: enable -Werror for ObjC filesMichael Stahl
2012-01-04extensions: fix unused param warnings in ObjC filesMichael Stahl
The namespace handling in the spotlight plugin XML parser looks broken, added some FIXMEs for that.
2012-01-04slideshow: fix unused param warnings in ObjC filesMichael Stahl
2012-01-04help compiler: less verbose output to consoleAndras Timar
2012-01-04Page Break: fix remaining indicator in some casesCédric Bosdonnat
When creating a new page without using a page break, before a page break, there was a remaining indicator. These are now checked and removed to avoid such cases.
2012-01-04remove non-existing 'ky'Andras Timar
2012-01-04regenerated custom shape presets with fixed ssd* constantsRadek Doulik
2012-01-04PPTX: fix ssd* constants import for drawingml formulasRadek Doulik
2012-01-04move static casts outside loopsLaurent Godard
some little perf. improvements on saving spreadsheets
2012-01-04move the assert checking the polygon count higherRadek Doulik
- so that it is called before accessing polygon points
2012-01-04Page Break, Header/Footer: fixed the line color change if config changesCédric Bosdonnat
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-04implemented QUADRATICCURVETO case of custom shape pathsRadek Doulik
- convert them to cubic beziers, which we have in basegfx
2012-01-04added Kyrgyz (China) [ky-CN] to language listEike Rathke
2012-01-04completelangiso is now in solenv/inc/langlist.mkEike Rathke
2012-01-04Remove bogus one column indentationTor Lillqvist
2012-01-04Handle /assets paths also in realpath_u()Tor Lillqvist
2012-01-04Fix the monkey patching to work for an arbitrary offsetTor Lillqvist
We used to patch in a simple "b" instruction with a relative offset that has to fit in 24(+2) bits. Which was not enough in practice. Now patch in a "ldr pc, [pc, #-4]" instead which loads PC from the next word; in ARM code PC cotains the address of the executing instruction + 8), and put the full address of the replacement code into the next word.
2012-01-04Probably using a local rtl::OString is betterTor Lillqvist