Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-02 | Merge branch 'master' of git://anongit.freedesktop.org/libreoffice/core | Michael Stahl | |
2011-10-31 | move CloseVeto from dbaccess to unotools | Michael Stahl | |
2011-10-30 | factorise multiple SQL_ISRULEOR2 implementations into one | Lionel Elie Mamane | |
2011-10-30 | add const | Lionel Elie Mamane | |
2011-10-30 | Remove unnecessary variable | Lionel Elie Mamane | |
2011-10-30 | fillFunctionInfo now also guesses the type of non-function call expressions | Lionel Elie Mamane | |
2011-10-30 | Reorganise code for more clarity; no behaviour change | Lionel Elie Mamane | |
2011-10-28 | Remove some parenthesis for readability | Julien Nabet | |
2011-10-27 | C-Style casting replaced by C++ style | Julien Nabet | |
2011-10-26 | WaE: illegal copy-initialization | Tor Lillqvist | |
2011-10-26 | WaE: unreferenced local variable | Tor Lillqvist | |
2011-10-26 | WaE: C++ exception handler used, but unwind semantics are not enabled | Tor Lillqvist | |
2011-10-26 | WaE: C++ exception handler used, but unwind semantics are not enabled | Tor Lillqvist | |
2011-10-26 | WaE: illegal copy-initialization | Tor Lillqvist | |
more than one user-defined conversion has been implicitly applied. So use the other style of initialisation then. | |||
2011-10-26 | Revert "Build dbaccess and connectivity only for DESKTOP platforms for now" | Tor Lillqvist | |
Nah, breaks the build for non-DESKTOP platforms anyway, as headers delivered there are needed elsewhere. So just keep building that stuff even if it presumably will not be needed on either of the non-DESKTOP platforms. This reverts commit 9b4212f14b11993222f933f59a93359ebc44c708. | |||
2011-10-25 | Build dbaccess and connectivity only for DESKTOP platforms for now | Tor Lillqvist | |
2011-10-25 | WaE: unreferenced local variable | Tor Lillqvist | |
2011-10-24 | Undo basis/brand split: Moved the rest of the WNT-only stuff. | Stephan Bergmann | |
2011-10-22 | Fix fdo#38286. Perhaps it could be simplified | Julien Nabet | |
2011-10-19 | Simplified comphelper::OSequenceIterator and its uses. | Stephan Bergmann | |
2011-10-11 | #i108468#: clean up xmluconv code duplication, measured approach: | Michael Stahl | |
modify sax::Converter::convertMeasure to use sal_Int64 instead of BigInt: should be sufficient, since the largest number is SAL_INT32_MAX * 10^7. remove duplicate methods from SvXMLUnitConverter: convertMeasurePx, convertMeasure (static variants) remove entirely duplicative class SvXMLExportHelper: GetConversionFactor, GetUnitFromString, AddLength change SvXMLUnitConverter interface from MapUnit to css::util::MeasureUnit. change SvXMLExport constructor params from MapUnit to css::util::MeasureUnit. rename some methods to turn compiler into merge conflict detector :) | |||
2011-10-11 | #i108468#: clean up xmluconv code duplication, DateTime edition: | Michael Stahl | |
remove duplicate methods from SvXMLUnitConverter: convertTime (all variants), convertDateTime (DateTime variants), convertTimeDuration. move convertAny from SvXMLUnitConverter to sax::converter. | |||
2011-10-11 | #i108468#: clean up xmluconv code duplication, part 1: | Michael Stahl | |
move convertNumber64 from SvXMLUnitConverter to sax::converter. remove duplicate methods from SvXMLUnitConverter: convertBool, convertPercent, convertColor, convertNumber, convertDouble, indexOfComma, encodeBase64, decodeBase64, decodeBase64SomeChars, clearUndefinedChars | |||
2011-10-07 | WaE: win32 cleanup | Michael Meeks | |
2011-10-05 | ByteString->rtl::OStringBuffer | Caolán McNamara | |
2011-10-05 | simplfy dmake to gbuild bridgefile | Bjoern Michaelsen | |
2011-09-30 | tweak ambiguities for F-15 gcc 4.6.1-9 | Caolán McNamara | |
2011-09-29 | add modelines | Caolán McNamara | |
2011-09-29 | remove archaic header guards | Caolán McNamara | |
2011-09-27 | Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *(). | Stephan Bergmann | |
2011-09-22 | just silence the auto_ptr deprecations in isolation | Caolán McNamara | |
2011-09-22 | Always link with user32 | Tor Lillqvist | |
2011-09-21 | WaE: unused variable | Caolán McNamara | |
2011-09-21 | OSL_TRACE: Remove trailing newlines | Thomas Arnhold | |
Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines | |||
2011-09-19 | Avoid premature deletion of objects in ODatabaseContext::m_aDatabaseObjects. | Stephan Bergmann | |
Access of deleted objects found with valgrind/memcheck of dbaccess/qa/unoapi. | |||
2011-09-15 | dbaccess: databasecontext.cxx: copy m_aDatabaseObjects | Michael Stahl | |
this fixes an STL assertion due to invalidated iterator. | |||
2011-09-15 | dbaccess: RowSet.cxx: update m_bIsInsertRow | Michael Stahl | |
fixes an STL assertion; this line was accidentally removed in merge commit bc3bbd2bb4b629ec612beeeeadd959a2fb6426c2 | |||
2011-09-12 | Type: BROWSER_INVALID_ID -> BROWSER_INVALIDID | Lionel Elie Mamane | |
2011-09-12 | cleanup BrowseBox, DbGridControl & friends handle & invalid column handling | Lionel Elie Mamane | |
- BrowseBox: Check Handle column-related invariants when adding a column: # only one handle column # it is the first - BrowseBox: Check column id-related invariants when adding a column: # Id is not the special "handle column" value # Id is not the special "invalid ID" value # unicity of the ID among columns - GetColumnId: return BROWSER_INVALIDID, not 0 (== id of handle column) for an invalid column; adapt code calling GetColumnId to this change. - Use the correct const or #define'd symbol instead of magic constants; introduce such a symbol if needed - General other miscellaneous cleanups: # Translation of comments # typo/spelling in comments, error messages and the like # parenthesise #define'd value # use SAL_MAX_UINT16 instead of USHRT_MAX where a sal_uInt16 is expected # BrowseBox::SetColumnTitle: nItemId is checked to be non-zero, so don't test if for zeroness again. | |||
2011-09-12 | typo in parameter name | Lionel Elie Mamane | |
2011-09-12 | callcatcher: various unused methods | Caolán McNamara | |
2011-09-03 | Fixes fdo#36594 Syntax error in SQL on "--" comment (and "//" and "/**/") | Jenei Gábor | |
The SQL parser implementation does not handle comments. Temporarily remove "-- ..." and "// ..." end-of-line comments and "/* ... */" inline comments of a query and append comments after recomposition of the query. NOTE: The original comment positions are not preserved, all comments are appended to the query! Based on the original patch further development was done for inline comments and preserving comments' line order. | |||
2011-09-01 | Some cppcheck cleaning | Julien Nabet | |
2011-08-31 | grabbag of unused code | Caolán McNamara | |
2011-08-30 | WaE: dbglevel=2 | Caolán McNamara | |
2011-08-25 | String::CreateFromInt64->rtl::OUString::valueOf | Caolán McNamara | |
2011-08-24 | gb_Library_set_cxxflags -> gb_Library_add_cxxflags | Jan Holesovsky | |
2011-08-22 | fix leaking 'Pictures' streams from basic dialogs in base | Noel Power | |
With database document, any contents of the Pictures folder ( afaics only basic dialogs store content here ) is never cleaned up between saves. | |||
2011-08-19 | detect gmake 3.81 and limit to -j1 unless num-cpu is explicitly set | Norbert Thiebaud | |
2011-08-19 | convert tools::Config to rtl::OString | Caolán McNamara | |