summaryrefslogtreecommitdiffstats
path: root/dbaccess
Commit message (Collapse)AuthorAgeFilesLines
* ByteString->rtl::OStringBufferCaolán McNamara2011-10-053-11/+12
|
* simplfy dmake to gbuild bridgefileBjoern Michaelsen2011-10-051-40/+1
|
* tweak ambiguities for F-15 gcc 4.6.1-9Caolán McNamara2011-09-303-9/+22
|
* add modelinesCaolán McNamara2011-09-2912-0/+29
|
* remove archaic header guardsCaolán McNamara2011-09-291-2/+0
|
* Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann2011-09-275-32/+26
|
* just silence the auto_ptr deprecations in isolationCaolán McNamara2011-09-2221-0/+124
|
* Always link with user32Tor Lillqvist2011-09-221-6/+0
|
* WaE: unused variableCaolán McNamara2011-09-211-1/+1
|
* OSL_TRACE: Remove trailing newlinesThomas Arnhold2011-09-211-37/+37
| | | | | | | Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines
* Avoid premature deletion of objects in ODatabaseContext::m_aDatabaseObjects.Stephan Bergmann2011-09-191-1/+4
| | | | Access of deleted objects found with valgrind/memcheck of dbaccess/qa/unoapi.
* dbaccess: databasecontext.cxx: copy m_aDatabaseObjectsMichael Stahl2011-09-151-2/+4
| | | | | this fixes an STL assertion due to invalidated iterator.
* dbaccess: RowSet.cxx: update m_bIsInsertRowMichael Stahl2011-09-151-0/+1
| | | | | | fixes an STL assertion; this line was accidentally removed in merge commit bc3bbd2bb4b629ec612beeeeadd959a2fb6426c2
* Type: BROWSER_INVALID_ID -> BROWSER_INVALIDIDLionel Elie Mamane2011-09-121-1/+1
|
* cleanup BrowseBox, DbGridControl & friends handle & invalid column handlingLionel Elie Mamane2011-09-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* typo in parameter nameLionel Elie Mamane2011-09-122-18/+18
|
* callcatcher: various unused methodsCaolán McNamara2011-09-122-7/+0
|
* Fixes fdo#36594 Syntax error in SQL on "--" comment (and "//" and "/**/")Jenei Gábor2011-09-031-0/+148
| | | | | | | | | | | | | 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.
* Some cppcheck cleaningJulien Nabet2011-09-011-1/+1
|
* grabbag of unused codeCaolán McNamara2011-08-311-137/+0
|
* WaE: dbglevel=2Caolán McNamara2011-08-301-7/+1
|
* String::CreateFromInt64->rtl::OUString::valueOfCaolán McNamara2011-08-251-1/+1
|
* gb_Library_set_cxxflags -> gb_Library_add_cxxflagsJan Holesovsky2011-08-241-2/+1
|
* fix leaking 'Pictures' streams from basic dialogs in baseNoel Power2011-08-221-0/+104
| | | | With database document, any contents of the Pictures folder ( afaics only basic dialogs store content here ) is never cleaned up between saves.
* detect gmake 3.81 and limit to -j1 unless num-cpu is explicitly setNorbert Thiebaud2011-08-191-1/+1
|
* convert tools::Config to rtl::OStringCaolán McNamara2011-08-191-1/+1
|
* odbcconfig is not a console applicationNorbert Thiebaud2011-08-131-0/+2
|
* ByteString, shrink apiCaolán McNamara2011-08-121-4/+3
|
* No more FORWARD_DECLARE_INTERFACE in dbaccess.Kohei Yoshida2011-08-119-28/+93
|
* prefer makefile-gmake-mode to plain makefile-modeTakeshi Abe2011-08-1020-20/+20
|
* patch for xmlfilter.cxxGabor Jenei2011-08-091-1/+2
|
* fix assert, names expected to be sortedCaolán McNamara2011-08-081-1/+2
|
* use SAL_N_ELEMENTSCaolán McNamara2011-08-081-1/+1
|
* Emacs modeline compatible with vim's oneTakeshi Abe2011-08-051-0/+1
|
* Use rtl::OUStringHash.Kohei Yoshida2011-08-042-2/+2
|
* callcatcher: remove unused codeCaolán McNamara2011-07-311-34/+0
|
* convert to new apiCaolán McNamara2011-07-311-5/+3
| | | | | | this code looks suspiciously like a no-op, i.e. that the intent is to append the generated string, but the old code threw away the string, so not a new bug but in there since 2001
* Add consistent Emacs and vim mode linesTor Lillqvist2011-07-3020-15/+37
|
* Merge commit 'libreoffice-3.4.2.3'Jan Holesovsky2011-07-281-1/+2
|\
| * Don't crash when selecting target to db document, fdo#36545.Jan Holesovsky2011-07-011-1/+2
| | | | | | | | Signed-off-by: Michael Meeks <michael.meeks@novell.com>
* | catch by const referenceCaolán McNamara2011-07-261-4/+4
| |
* | Merge branch 'master' into feature/gnumake4Bjoern Michaelsen2011-07-244-42/+37
|\ \
| * | Adjusted for HTMLParser::GetOptions return type change.Kohei Yoshida2011-07-222-33/+29
| | |
| * | Plug MinGW gapsTor Lillqvist2011-07-221-0/+6
| | |
| * | Do compile adodatalinks.cxx always for WindowsTor Lillqvist2011-07-221-7/+0
| | | | | | | | | | | | | | | Don't test any bogus PROF_EDITION, and don't bother with WINDOWS_VISTA_PSDK either.
| * | Set CXXFLAGS, not CFLAGSTor Lillqvist2011-07-221-2/+2
| | |
* | | revert to dbaccess gbuildization from master mostlyBjoern Michaelsen2011-07-23239-299/+835
| | | | | | | | | | | | | | | | | | * only add JunitTest_dbaccess_complex, which was missing on master * disable complex.dbaccess.DatabaseDocument in JunitTest_dbaccess_complex for now as it fails
* | | postmerge fixes for gnumake4Bjoern Michaelsen2011-07-221-1/+5
| | |
* | | resyncing to masterBjoern Michaelsen2011-07-2123-121/+82
|\| |
| * | ByteString::CreateFromAscii->rtl::OStringBuffer::valueOfCaolán McNamara2011-07-192-30/+29
| | |