summaryrefslogtreecommitdiff
path: root/tools/inc
AgeCommit message (Collapse)Author
2012-04-12operator<< for ostream + UniStringLuboš Luňák
This should make even String be easily usable with SAL_DEBUG stuff (the same like 2ac5b08361bf0c7c98ff9bc10869e2b41c9d85fd for OUString).
2012-04-10resolved fdo#48501 enable line size >64k in SvStream::Read*Line()Eike Rathke
CSV and other text formats may come with line sizes >64k that so far were truncated due to limitations in ByteString/UniString/String, even if one line consists of several fields that each are <64k. Introduced additional SvStream methods that read into rtl::OString and rtl::OUString and let SvStream::ReadUniOrByteStringLine() fill solely an rtl::OUString. Made Calc CSV import use those.
2012-04-05convert (ugly) WriteUniOrByteString to rtl::OUStringCaolán McNamara
2012-04-02callcatcher: remove some unused codeCaolán McNamara
2012-04-02sal: expose more stringbuffer related instrumentation pointsMichael Meeks
Avoid ref/unref pair in makeStringAndClear, hook into the stringbuffer-like 'String' class to expose it's conversion to immutable strings, and fixup misc. missing instrumentation.
2012-03-26callcatcher: shiny unused method reduction from to-stl conversionsCaolán McNamara
2012-03-23only SV_DECL_COMPAT_WEAK is still in useCaolán McNamara
2012-03-23ditch archaic ifdefs for gcc 2.8.1, 2.9.0 and 2.9.1Caolán McNamara
2012-03-20remove ToDouble/ToFloatCaolán McNamara
2012-03-20GetStringRes inline doesn't have a purpose anymoreCaolán McNamara
2012-03-20make ResId->OUString the primary routeCaolán McNamara
2012-03-08Convert tools/table.hxx to std::mapNoel Grandin
Convert usage of tools/table.hxx to std::map in aPTable field of SvPersistStream class.
2012-03-02Revert "Added 'Copy to Clipboard' button to error dialogs"Tor Lillqvist
The UI change was too intrusive. This reverts commit dfc9c72d7797862a9292bdda16ad8c107124a6df.
2012-03-02fdo#46501: Cleanup SimpleResMgrSzabolcs Dezsi
2012-03-01Added 'Copy to Clipboard' button to error dialogsSzabolcs Dezsi
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-03-01callcatcher: update listCaolán McNamara
2012-03-01now restore and use reduced UnlockFile and UnlockRange implsCaolán McNamara
because its super ugly to have unbalanced lock/unlocks and with the removal of STAR_ENABLE_FILE_LOCKING we can call those methods and now get unchanged behaviour
2012-02-29callcatcher: update listCaolán McNamara
2012-02-28fix windows buildCaolán McNamara
2012-02-28convert some low hanging fruitCaolán McNamara
2012-02-28callcatcher: remove newly unused methods and update listCaolán McNamara
2012-02-27Removed dead codeMarc-André Laverdière-Papineau
Deleted: SvFileStream::UnlockFile()
2012-02-27fdo44516 cleanup of direct use of color in codeWinfried Donkers
2012-02-27Removed unused codeSzabolcs Dezsi
2012-02-27merge GetString variantsCaolán McNamara
2012-02-27drop UniString::CreateFromInt64Caolán McNamara
2012-02-27ByteString is no moreCaolán McNamara
2012-02-23don't point inline at non-existing methodCaolán McNamara
2012-02-23Get rid of CREATEVERSIONRESMGR[_NAME]Stephan Bergmann
2012-02-23lock in ByteString gainsCaolán McNamara
2012-02-21fdo#44993: Remove obsolete FSysRedirectorElton Chung
2012-02-20unusedcode.easy: some cleaningThomas Arnhold
2012-02-18Fix typos in commentsElton Chung
2012-02-16callcatcher: update unused code listCaolán McNamara
2012-02-15lock in those ByteString gains so there's no back-slidingCaolán McNamara
2012-02-13unusedcode.easy: Removed unused codeAlexander Bergmann
2012-02-13callcatcher: regenerate listCaolán McNamara
2012-02-07tools: fsys: Delete unused FileStat::FileStat()Greg Kroah-Hartman
2012-01-30fdo#44981 - remove obsolete SWAPLONG macrosNoel Grandin
2012-01-30refactor ConvertLineEndCaolán McNamara
2012-01-27SvGlobalName::GetctorName is now redundantCaolán McNamara
2012-01-25refresh unused code listCaolán McNamara
2012-01-25move ugly WriteLines out of SvStream to beside sole userCaolán McNamara
2012-01-24use write_uInt16s_FromOUString patternCaolán McNamara
2012-01-24use read_lenPrefixed_uInt16s_ToOUString instead of hand-rolled loopsCaolán McNamara
2012-01-24all direct OUString readers are current little endian streamsCaolán McNamara
2012-01-23fdo#44988: Remove obsolete BOOTSTRAP defines.Thomas Collerton
2012-01-21privateise FileCopier - it is not used externallyMichael Meeks
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.