summaryrefslogtreecommitdiff
path: root/dbaccess
AgeCommit message (Collapse)Author
2011-11-02Merge branch 'master' of git://anongit.freedesktop.org/libreoffice/coreMichael Stahl
2011-10-31move CloseVeto from dbaccess to unotoolsMichael Stahl
2011-10-30factorise multiple SQL_ISRULEOR2 implementations into oneLionel Elie Mamane
2011-10-30add constLionel Elie Mamane
2011-10-30Remove unnecessary variableLionel Elie Mamane
2011-10-30fillFunctionInfo now also guesses the type of non-function call expressionsLionel Elie Mamane
2011-10-30Reorganise code for more clarity; no behaviour changeLionel Elie Mamane
2011-10-28Remove some parenthesis for readabilityJulien Nabet
2011-10-27C-Style casting replaced by C++ styleJulien Nabet
2011-10-26WaE: illegal copy-initializationTor Lillqvist
2011-10-26WaE: unreferenced local variableTor Lillqvist
2011-10-26WaE: C++ exception handler used, but unwind semantics are not enabledTor Lillqvist
2011-10-26WaE: C++ exception handler used, but unwind semantics are not enabledTor Lillqvist
2011-10-26WaE: illegal copy-initializationTor Lillqvist
more than one user-defined conversion has been implicitly applied. So use the other style of initialisation then.
2011-10-26Revert "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-25Build dbaccess and connectivity only for DESKTOP platforms for nowTor Lillqvist
2011-10-25WaE: unreferenced local variableTor Lillqvist
2011-10-24Undo basis/brand split: Moved the rest of the WNT-only stuff.Stephan Bergmann
2011-10-22Fix fdo#38286. Perhaps it could be simplifiedJulien Nabet
2011-10-19Simplified 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-07WaE: win32 cleanupMichael Meeks
2011-10-05ByteString->rtl::OStringBufferCaolán McNamara
2011-10-05simplfy dmake to gbuild bridgefileBjoern Michaelsen
2011-09-30tweak ambiguities for F-15 gcc 4.6.1-9Caolán McNamara
2011-09-29add modelinesCaolán McNamara
2011-09-29remove archaic header guardsCaolán McNamara
2011-09-27Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann
2011-09-22just silence the auto_ptr deprecations in isolationCaolán McNamara
2011-09-22Always link with user32Tor Lillqvist
2011-09-21WaE: unused variableCaolán McNamara
2011-09-21OSL_TRACE: Remove trailing newlinesThomas 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-19Avoid premature deletion of objects in ODatabaseContext::m_aDatabaseObjects.Stephan Bergmann
Access of deleted objects found with valgrind/memcheck of dbaccess/qa/unoapi.
2011-09-15dbaccess: databasecontext.cxx: copy m_aDatabaseObjectsMichael Stahl
this fixes an STL assertion due to invalidated iterator.
2011-09-15dbaccess: RowSet.cxx: update m_bIsInsertRowMichael Stahl
fixes an STL assertion; this line was accidentally removed in merge commit bc3bbd2bb4b629ec612beeeeadd959a2fb6426c2
2011-09-12Type: BROWSER_INVALID_ID -> BROWSER_INVALIDIDLionel Elie Mamane
2011-09-12cleanup BrowseBox, DbGridControl & friends handle & invalid column handlingLionel 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-12typo in parameter nameLionel Elie Mamane
2011-09-12callcatcher: various unused methodsCaolán McNamara
2011-09-03Fixes 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-01Some cppcheck cleaningJulien Nabet
2011-08-31grabbag of unused codeCaolán McNamara
2011-08-30WaE: dbglevel=2Caolán McNamara
2011-08-25String::CreateFromInt64->rtl::OUString::valueOfCaolán McNamara
2011-08-24gb_Library_set_cxxflags -> gb_Library_add_cxxflagsJan Holesovsky
2011-08-22fix leaking 'Pictures' streams from basic dialogs in baseNoel 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-19detect gmake 3.81 and limit to -j1 unless num-cpu is explicitly setNorbert Thiebaud
2011-08-19convert tools::Config to rtl::OStringCaolán McNamara