summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-20Unused includesStephan Bergmann
2012-03-20C++11: invalid string literal suffixLuboš Luňák
so let's make the sal_intXY ugliness even a bit more ugly
2012-03-20move #include from .h to the one .cxx where it is neededLuboš Luňák
2012-03-20WaE: '%u' expects 'unsigned int', but argument is 'sal_uInt32'Tor Lillqvist
2012-03-19Fix a crash on launching the pivot layout dialog with duplicated data fields.Kohei Yoshida
2012-03-19check for negative sheet number here too, fdo#47503Markus Mohrhard
2012-03-19remove fiddly casts, add few const where appropriateLuboš Luňák
2012-03-19TypoStephan Bergmann
2012-03-19Record sort order during the first sort by the value, and use it the 2nd time.Kohei Yoshida
This avoids comparison of raw values (ScDPItemData) during the 2nd sort. Comparison of raw values can be expensive especially when the item sets mostly consist of string values.
2012-03-19Missing includeStephan Bergmann
2012-03-19Fixed spl_component_getFactoryStephan Bergmann
The old code relied on the order of initializing global static variables across compilation units, which failed for MinGW cross compilation. Cleaned up.
2012-03-19OOpsFridrich Štrba
2012-03-19Improve linkoo for MinGW.Jan Holesovsky
2012-03-19How to examine strings in winedbg.Jan Holesovsky
2012-03-19Don't build unnecessary filesFridrich Štrba
2012-03-19Simple Zip file-format implementation to avoid the need of minizipFridrich Štrba
2012-03-19Workaround a strange wine / mingw crash.Jan Holesovsky
2012-03-19soffice.exe must not link against sal3.dll (might fix fdo#44489)Stephan Bergmann
...as soffice.exe creates the proper environment (PATH) for soffice.bin to be able to load URE libs like sal3.dll, so soffice.exe itself should neither be able to load nor depend on sal3.dll (and does not depend on anything exported by it, anyway). It is unclear to me how this ever worked (which it presumably did?) with any Windows build, either native MSVC or cross-compiled MinGW. (Maybe MSVC builds do not record a dependency from soffice.exe to sal3.dll, noting that the former does not import anything from the latter?)
2012-03-19Better check when to use the lcms2-windows-export.patch.Jan Holesovsky
2012-03-19Fix libcms2 build on MinGW.Jan Holesovsky
2012-03-19Don't build helppack installers if --without-helpTor Lillqvist
Or should it be --without-helppack-integration that affects it? Or both? Why do we need both these switches? And what does that irritating "integration" thing mean again? Does --without-helppack-integration mean "yes, do build helppacks, but don't integrate them"?
2012-03-19testcase for n#751020Miklos Vajna
2012-03-19Copy/paste typoStephan Bergmann
2012-03-19Do AC_PROG_EGREP before using $GREPTor Lillqvist
2012-03-19Mark also the copy constructor as SC_DLLPUBLIC, needed by the scfilt libraryTor Lillqvist
2012-03-19mingw: check for jpeg dllDavid Tardon
2012-03-19mingw: check for system iconv dllDavid Tardon
libxslt in Fedora mingw packages depends on it.
2012-03-19testcase for fdo#43965Miklos Vajna
2012-03-19fdo#43965 fix RTF import of \up and \dn with custom parametersMiklos Vajna
2012-03-19fdo#43965 dmapper: fix line width defaultMiklos Vajna
Writer's default is 0, but Word's default is 26 (15 in 1/8 pt)
2012-03-19Define CMS_DLL in the header as that is how we build itLubos Lunak
Otherwise code using the lcms2 we build won't get the stdcall decorations and linking will fail.
2012-03-19Revert "lcms2 uses stdcall for some reason"Tor Lillqvist
Nah, will use the patch by Lubos instead. This reverts commit 85f074554788e2d8da73e77855ca06bc0fdfbaa4.
2012-03-19lcms2 uses stdcall for some reasonTor Lillqvist
2012-03-19adjust test for the correct dbdata importMarkus Mohrhard
2012-03-19add missing forward declarationsMarkus Mohrhard
2012-03-18Remove deprecated class DevChartConfigItem.Rafael Dominguez
2012-03-19emser belongs to OOOLIBSMatúš Kukan
2012-03-18Check iterator end WW8TableCellGridArnaud Versini
2012-03-18mingw: allow forced use of system icu toolsDavid Tardon
2012-03-18mingw: test system icu versionDavid Tardon
2012-03-18mingw: use system icu tools when requestedDavid Tardon
2012-03-18clean up after copy & pasteDavid Tardon
2012-03-18mingw: allow use of system zlibDavid Tardon
2012-03-18mingw: avoid hardcoded dll versions and depsDavid Tardon
The idea is to use libo_MINGW_CHECK_DLL for libs that must be available (typically that would be the "main" library, e.g., libxml2 or libcurl) and libo_MINGW_TRY_DLL for possible dependencies (that may not be the same on different systems). All further references to the dlls are exclusively through the configured variables or defines set from these variables (e.g., instead of hardcoding libxml2-2.dll, use $(MINGW_LIBXML2_DLL)). The macros are documented in m4/mingw.m4 . Files that must be changed when adding a new dll: * configure.in * config_host.mk.in * external/mingw-dlls/makefile.mk * scp2/source/ooo/makefile.mk * scp2/source/ooo/mingw_dlls.scp
2012-03-18resolved fdo#46947 duplicated date format [zh-TW]Cheng-Chia Tseng
Use GG era abbreviation in one format instead of full GGG.
2012-03-18add test case for fdo#40426Markus Mohrhard
2012-03-18some sal_Bool to bool in transobj.cxxMarkus Mohrhard
2012-03-18also shrink used area for HTML in some cases, fdo#46230, n#677811Markus Mohrhard
Hopefully this will allow pasting to external applications with whole column/row selected while not affecting calc itself.
2012-03-18disable two slow java based subsequenttests, fdo#45337Markus Mohrhard
These two tests are not well designed and need 5 and 10 minute just to check that we really return every row. This is not a good trade-off between test coverage and execution time. Enable them again with a better concept.
2012-03-18add all imported properties to ScDBData, fdo#40426Markus Mohrhard