Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-30 | rename, and bundle the postgresql driver if it is enabled | Michael Meeks | |
2011-11-30 | fix TARGETGUI for windows | Bjoern Michaelsen | |
2011-11-30 | Fixed fdo#42778 pass count in Manage Breakpoints and crash in dialog | Niklas Johansson | |
When entering pass count 2 it is expected that the breakpoint is passed two times before breaking not to break the second time. Also fixed a crash due to dangling pointers of breakpoints. | |||
2011-11-30 | no need to check for Gregorian cut-off date here | Eike Rathke | |
2011-11-30 | OSL_TRACE in sal/rtl/source/alloc_*.cxx leads to deadlock... | Stephan Bergmann | |
...with SAL_LOG=+INFO due to std::ostringstream in log.cxx using global operator new, which potentially calls rtl_allocateMemory. | |||
2011-11-30 | Remove unused variable PACKAGE_LIB_DIR | François Tigeot | |
2011-11-30 | temporary hack: soffice.bin should be type of GUI app, not CUI app fdo#42914 | Andras Timar | |
It is puzzling that Executable_soffice.bin.mk contains the line $(eval $(call gb_Executable_set_targettype_gui,$(sofficebin),YES)) yet, in the build log we see -SUBSYSTEM:CONSOLE among the linker flags. I added -SUBSYSTEM:WINDOWS flag exlicitely, and it comes later so it prevails. I guess MinGW will be still affected. It really should be fixed correctly by a gbuild expert. | |||
2011-11-30 | fix license header | Andras Timar | |
2011-11-30 | sampleicc has not yet been packaged in pkgsrc | François Tigeot | |
2011-11-30 | Translate German comments | Philipp Weissenbacher | |
2011-11-30 | Translate German comments | Philipp Weissenbacher | |
2011-11-30 | Removed unused sal/inc/internal/once.h. | Stephan Bergmann | |
2011-11-30 | Convert group of consts to enum | August Sodora | |
2011-11-30 | Use SmART Gallery 0.95 | Kalman Szalai - KAMI | |
2011-11-30 | String->OUString | August Sodora | |
2011-11-30 | Reduce usage of GetQueryItem() (singular version). | Kohei Yoshida | |
I added that as a convenience method while working on implementing multi-value filtering. But we need to stick with the plural version GetQueryItems() from now on for clarity. | |||
2011-11-30 | Remove some obsolete config options | Fridrich Štrba | |
2011-11-29 | Export multi-value filters to xlsx. | Kohei Yoshida | |
2011-11-29 | sal_Bool to bool. | Kohei Yoshida | |
2011-11-29 | Correctly import multi-value filter settings. | Kohei Yoshida | |
We are still not 100% compatible, e.g. Excel's "show blanks" setting is not cleanly mapped (partly due to ODF's limitation). But that's a future TODO. | |||
2011-11-29 | Switch to TableFilterField3, but no other changes. | Kohei Yoshida | |
2011-11-29 | Removed duplicate code block. | Kohei Yoshida | |
2011-11-29 | Implemented the new multi-value filter API. | Kohei Yoshida | |
2011-11-29 | New UNO API to handle multi-value filters. | Kohei Yoshida | |
2011-11-30 | catch by constant reference | Takeshi Abe | |
2011-11-30 | introduced Date::IsValidDate() and Date::Normalize() | Eike Rathke | |
+ IsValidDate() checks only day and month regarding the year, not Gregorian cut-off date as now does IsValidAndGregorian(). + Normalize() carries over invalid day and month values to next months and years. * All methods that return or internally use a day count now internally normalize the date values, without modifying the actual Date instance. So, if the date is not valid you may get unexpected results. * Previously, a date with month>12 would had accessed the days-of-month array out of bounds on all such methods. So you would had gotten unexpected results anyway.. * Affected methods are: GetDayOfYear() GetWeekOfYear() GetDaysInMonth() static DateToDays() | |||
2011-11-30 | handle dates with year < 1000 | Eike Rathke | |
* Read dates with years consisting of less than 4 digits. ISO 8601 specifies that years are to be written with a minimum of 4 digits. However, be lenient in what we accept. * Write years < 1000 with leading zeros to comply with ISO 8601 YYYY. | |||
2011-11-30 | fixed fdo#40363 freeze chart wizard with non-gregorian date | Eike Rathke | |
Use the newly introduced Date::Normalize() instead of a never ending while(!date.IsValid()) | |||
2011-11-30 | introduced Date::IsValidDate() and Date::Normalize() | Eike Rathke | |
+ IsValidDate() checks only day and month regarding the year, not Gregorian cut-off date as now does IsValidAndGregorian(). + Normalize() carries over invalid day and month values to next months and years. * All methods that return or internally use a day count now internally normalize the date values, without modifying the actual Date instance. So, if the date is not valid you may get unexpected results. * Previously, a date with month>12 would had accessed the days-of-month array out of bounds on all such methods. So you would had gotten unexpected results anyway.. * Affected methods are: GetDayOfYear() GetWeekOfYear() GetDaysInMonth() static DateToDays() | |||
2011-11-30 | renamed Date::IsValid() to IsValidAndGregorian() to prevent misassumptions | Eike Rathke | |
Once smaller than 1582-10-15 decrementing a Date will not produce a valid date. | |||
2011-11-30 | online update: Now check even the checkForUpdates(). | Jan Holesovsky | |
2011-11-30 | online update: Cleanup after UpdateInformationProvider::load() rewrite. | Jan Holesovsky | |
2011-11-30 | online update: Unit testing framework + rewrite of load(). | Jan Holesovsky | |
- introduce first two basic tests (to be improved) - rewrite of UpdateInformationProvider::load() to use comphelper - smaller splitting of functions to be able to unit test | |||
2011-11-30 | online update: Make the test for update to actually start (still fails). | Jan Holesovsky | |
2011-11-29 | getenv based debugging code doesn't make complete sense, remove | Caolán McNamara | |
i.e. mnOutWidth = maPaperSize.Width() - 2*maPageOffset.X(); mnOutWidth = maPaperSize.Width() - 2*maPageOffset.Y(); might possibly be intended to be mnOutWidth = maPaperSize.Width() - 2*maPageOffset.X(); mnOutHeight = maPaperSize.Height() - 2*maPageOffset.Y(); either way, its behind a special getenv, so ditch the lot | |||
2011-11-29 | don't remove Makefile on make distclean, we need it now in all cases... | Rene Engelhard | |
2011-11-29 | fix test: s/==/=/ | Rene Engelhard | |
2011-11-29 | Check for empty URLs after all, to avoid warnings from canonic(). | Stephan Bergmann | |
2011-11-29 | Adapted to new assertion/logging mechanisms. | Stephan Bergmann | |
2011-11-29 | Enabled sc/qa/complex again. | Stephan Bergmann | |
sc/qa/complex/calcPreview/ tests do not work automatically and have been left alone. | |||
2011-11-29 | import docx m:m | Luboš Luňák | |
2011-11-29 | finish reading in while() also when end of stream, just in case | Luboš Luňák | |
2011-11-29 | improve import of docx m:d | Luboš Luňák | |
2011-11-29 | docx OMathArg can actually be more than one element | Luboš Luňák | |
2011-11-29 | docx m:r can contain multiple m:t | Luboš Luňák | |
2011-11-29 | implement docx m:groupChr | Luboš Luňák | |
2011-11-29 | implement m:func, m:limLow, m:limUpp | Luboš Luňák | |
2011-11-29 | fix reading when the next tag can be one of several | Luboš Luňák | |
2011-11-29 | better debug output when skipping an element | Luboš Luňák | |
2011-11-29 | no debug about skipping tags if not actually skipping | Luboš Luňák | |