Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-12 | operator<< for ostream + UniString | Luboš Luňák | |
This should make even String be easily usable with SAL_DEBUG stuff (the same like 2ac5b08361bf0c7c98ff9bc10869e2b41c9d85fd for OUString). | |||
2012-04-10 | resolved 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-05 | convert (ugly) WriteUniOrByteString to rtl::OUString | Caolán McNamara | |
2012-04-02 | callcatcher: remove some unused code | Caolán McNamara | |
2012-04-02 | sal: expose more stringbuffer related instrumentation points | Michael 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-26 | callcatcher: shiny unused method reduction from to-stl conversions | Caolán McNamara | |
2012-03-23 | only SV_DECL_COMPAT_WEAK is still in use | Caolán McNamara | |
2012-03-23 | ditch archaic ifdefs for gcc 2.8.1, 2.9.0 and 2.9.1 | Caolán McNamara | |
2012-03-20 | remove ToDouble/ToFloat | Caolán McNamara | |
2012-03-20 | GetStringRes inline doesn't have a purpose anymore | Caolán McNamara | |
2012-03-20 | make ResId->OUString the primary route | Caolán McNamara | |
2012-03-08 | Convert tools/table.hxx to std::map | Noel Grandin | |
Convert usage of tools/table.hxx to std::map in aPTable field of SvPersistStream class. | |||
2012-03-02 | Revert "Added 'Copy to Clipboard' button to error dialogs" | Tor Lillqvist | |
The UI change was too intrusive. This reverts commit dfc9c72d7797862a9292bdda16ad8c107124a6df. | |||
2012-03-02 | fdo#46501: Cleanup SimpleResMgr | Szabolcs Dezsi | |
2012-03-01 | Added 'Copy to Clipboard' button to error dialogs | Szabolcs Dezsi | |
2012-03-01 | New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problem | Stephan Bergmann | |
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem. | |||
2012-03-01 | callcatcher: update list | Caolán McNamara | |
2012-03-01 | now restore and use reduced UnlockFile and UnlockRange impls | Caolá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-29 | callcatcher: update list | Caolán McNamara | |
2012-02-28 | fix windows build | Caolán McNamara | |
2012-02-28 | convert some low hanging fruit | Caolán McNamara | |
2012-02-28 | callcatcher: remove newly unused methods and update list | Caolán McNamara | |
2012-02-27 | Removed dead code | Marc-André Laverdière-Papineau | |
Deleted: SvFileStream::UnlockFile() | |||
2012-02-27 | fdo44516 cleanup of direct use of color in code | Winfried Donkers | |
2012-02-27 | Removed unused code | Szabolcs Dezsi | |
2012-02-27 | merge GetString variants | Caolán McNamara | |
2012-02-27 | drop UniString::CreateFromInt64 | Caolán McNamara | |
2012-02-27 | ByteString is no more | Caolán McNamara | |
2012-02-23 | don't point inline at non-existing method | Caolán McNamara | |
2012-02-23 | Get rid of CREATEVERSIONRESMGR[_NAME] | Stephan Bergmann | |
2012-02-23 | lock in ByteString gains | Caolán McNamara | |
2012-02-21 | fdo#44993: Remove obsolete FSysRedirector | Elton Chung | |
2012-02-20 | unusedcode.easy: some cleaning | Thomas Arnhold | |
2012-02-18 | Fix typos in comments | Elton Chung | |
2012-02-16 | callcatcher: update unused code list | Caolán McNamara | |
2012-02-15 | lock in those ByteString gains so there's no back-sliding | Caolán McNamara | |
2012-02-13 | unusedcode.easy: Removed unused code | Alexander Bergmann | |
2012-02-13 | callcatcher: regenerate list | Caolán McNamara | |
2012-02-07 | tools: fsys: Delete unused FileStat::FileStat() | Greg Kroah-Hartman | |
2012-01-30 | fdo#44981 - remove obsolete SWAPLONG macros | Noel Grandin | |
2012-01-30 | refactor ConvertLineEnd | Caolán McNamara | |
2012-01-27 | SvGlobalName::GetctorName is now redundant | Caolán McNamara | |
2012-01-25 | refresh unused code list | Caolán McNamara | |
2012-01-25 | move ugly WriteLines out of SvStream to beside sole user | Caolán McNamara | |
2012-01-24 | use write_uInt16s_FromOUString pattern | Caolán McNamara | |
2012-01-24 | use read_lenPrefixed_uInt16s_ToOUString instead of hand-rolled loops | Caolán McNamara | |
2012-01-24 | all direct OUString readers are current little endian streams | Caolán McNamara | |
2012-01-23 | fdo#44988: Remove obsolete BOOTSTRAP defines. | Thomas Collerton | |
2012-01-21 | privateise FileCopier - it is not used externally | Michael Meeks | |
2012-01-21 | Removed 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. |