summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)AuthorFilesLines
2012-02-16Apply master fix 2dd1722d2729f0d6cda6e31297f3e03ae36c555fJulien Nabet1-1/+1
2012-01-12make it possible to create 360 degrees arc (circle)Radek Doulik2-2/+6
2012-01-06gcc-trunk: fix error: unable to find string literal operator 'operator"" FOO'Matúš Kukan2-6/+6
Signed-off-by: David Tardon <dtardon@redhat.com>
2012-01-03Fix import of multi-line cell contents during csv import.Kohei Yoshida1-1/+1
Regression from 3.3.x. Import of tab-delimited csv documents containing multi-line cells were unfortunately broken with my fix for handling malformed csv documents. The intent was to break out of the loop only when a tab character is encountered before the closing quote is encountered, but the old code would break out whenever a tab character is encountered even outside the quotes. This commit fixes it.
2011-12-07in modules, when we have a env we are in stage gbuildBjoern Michaelsen1-0/+1
2011-12-07use gbuild_simple in toolsBjoern Michaelsen1-2/+3
2011-12-07ditch some ByteStringsCaolán McNamara4-24/+23
2011-12-07aSourceFile member unusedCaolán McNamara1-1/+0
2011-12-05Remove unused tools/stack.hxxMarcel Metz2-104/+0
2011-12-02Also demote DBG_ASSERTWARNING to SAL_INFO, to reduce output clutter.Stephan Bergmann1-5/+5
2011-12-01get rid of class Date and Time default ctor with system time penaltyEike Rathke6-8/+46
2011-12-01pull in module headers before solverEike Rathke2-5/+4
2011-12-01Remove uses of charAtAugust Sodora1-7/+6
2011-11-30introduced Date::IsValidDate() and Date::Normalize()Eike Rathke1-1/+32
+ 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-30introduced Date::IsValidDate() and Date::Normalize()Eike Rathke1-4/+105
+ 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-30renamed Date::IsValid() to IsValidAndGregorian() to prevent misassumptionsEike Rathke3-3/+7
Once smaller than 1582-10-15 decrementing a Date will not produce a valid date.
2011-11-29move reconfigure into gbuildBjoern Michaelsen1-1/+1
2011-11-28ByteString->rtl::OString[Buffer]Caolán McNamara5-96/+72
2011-11-27remove precompiled_xxx.hxx/cxxNorbert Thiebaud2-122/+0
2011-11-27remove pch from the include listNorbert Thiebaud6-6/+0
2011-11-27remove include of pch header from toolsNorbert Thiebaud83-152/+0
2011-11-27remove pre-compiled header support in gbuild and gbuildified moduleNorbert Thiebaud1-2/+0
2011-11-27typos fixingKorrawit Pruegsanusak1-1/+1
2011-11-25typo, thanks Guest70165 :-)Caolán McNamara1-1/+1
2011-11-25ByteString->rtl::OStringCaolán McNamara2-4/+4
2011-11-25make gbuild makefiles run independant of pwd againBjoern Michaelsen1-1/+1
2011-11-25ByteString->rtl::OStringCaolán McNamara4-85/+63
2011-11-25demoted plentiful DBG_WARNING etc. to SAL_INFOStephan Bergmann1-9/+9
2011-11-25gsl_getSystemTextEncoding -> osl_getThreadTextEncodingDavid Tardon1-7/+0
2011-11-24ByteString->rtl::OStringCaolán McNamara1-11/+11
2011-11-24ditch dbg_dumpCaolán McNamara2-51/+0
2011-11-24strip down old string class some moreCaolán McNamara3-58/+32
2011-11-23add string::strip, can replace EraseLeadingAndTrailingCharsCaolán McNamara2-2/+3
2011-11-23Changed sal/log.h -> sal/log.hxx, drop _S from C++ streaming log macros.Stephan Bergmann3-24/+27
A compile time check ensures the common case of streaming just a plain C-style string literal still produces reasonably compact call-site code. The format-string variants are still available in sal/detail/log.h, but only to be used in obsolete osl/diagnose.h etc., and going to be removed again eventually.
2011-11-23convert inlines as wellCaolán McNamara1-3/+2
2011-11-23add a stripStart, can replace EraseLeadingCharsCaolán McNamara3-51/+51
2011-11-22want to match here, not check for equalityCaolán McNamara1-25/+25
2011-11-22Avoid rtl::OString::copy(getLength() + 1).Stephan Bergmann1-1/+2
2011-11-22New sal/log.h obsoletes osl/diagnose.h and tools/debug.hxx.Stephan Bergmann4-195/+76
* New SAL_INFO..., SAL_WARN... macros. * New SAL_STREAM supersedes OSL_FORMAT. * oustringostreaminserter.hxx moved from unotest to rtl (and always UTF-8 now). * TODO to enable GCC __attribute__((format)) in sal/log.h (requires call-site cleanup). * Further functionality in tools/debug.hxx (DBG_MEMTEST, DBG_CTOR, etc.) not yet addressed. * Some replacements tools String -> rtl::OUString.
2011-11-21ByteString->rtl::OStringCaolán McNamara8-212/+213
2011-11-21ditch last ENABLE_STRING_STREAM_OPERATORSCaolán McNamara1-6/+0
2011-11-19ByteString->rtl::OString[Buffer]Caolán McNamara2-108/+55
2011-11-19remove ENABLE_BYTESTRING_STREAM_OPERATORSCaolán McNamara2-7/+0
2011-11-19remove [Byte]String::EraseAllCharsCaolán McNamara2-46/+0
2011-11-19Re-do Removed tools/dynarray.hxx , now that binfitler is ready for itNorbert Thiebaud2-106/+0
2011-11-19Revert "Removed tools/dynarray.hxx", break binfilterNorbert Thiebaud2-0/+106
This reverts commit 89a783cde071d63120bfa63768b4680dd2e58fee.
2011-11-18Removed tools/dynarray.hxxAugust Sodora2-106/+0
2011-11-17ByteString->rtl::OString[Buffer]Caolán McNamara3-109/+92
2011-11-16we can drop unqid.hxx entirely post move to binfilterCaolán McNamara3-206/+0
2011-11-16tweak gbuild standart Makefile to allow partial build in unsourced envNorbert Thiebaud1-4/+4
This allow to run make in a module wihtout the need to source Env.Host.sh.