Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-02-09 | Replaced String by rtl::OUString in SvxMacro | Takeshi Abe | |
2012-02-08 | changes to "tools/table.hxx to std::map conversion" | Eike Rathke | |
* use consistent indenting with 4 spaces (instead of tabs (plus one space)) * use erase(it++) instead of erase(it); ++it to not access invalidated iterator * for First(); Remove(); Next() loops over entire Table use map::clear() at the end if it isn't in a dtor * use existing typedef SvNumberFormatTable in numfmtsh.hxx instead of redefining, which means include zforlist.hxx now and some other forward declarations can be removed * removed inlined duplicated code of GetEntry(), implemented it in zforlist.cxx instead and made const GetFormatEntry() just call GetEntry() * removed the temporary sal_uIntPtr nFormat to be used as key, the sal_uIntPtr was only used because Table effectively had pointer size as keys. * made initial assignments of nDefaultFormat and nDefaultCurrencyFormat use the ternary conditional operator | |||
2012-02-08 | tools/table.hxx to std::map conversion in SV, SVL and SVX modules | Noel Grandin | |
This patch converts one use of tools/table.hxx in svl/inc/svl/zforlist.hxx, whose use in turn spans 3 modules. | |||
2012-02-08 | update unused list | Caolán McNamara | |
2012-02-07 | Reintroduce MSVC workaround | Stephan Bergmann | |
...originally introduced with 02abccf953185f266979aafd946f5b96c5d59875 but erroneously purged with 9c2f7056a82c4d7719715ca1c77f8dd4c17aa24c. | |||
2012-02-07 | Have SfxItemSet::HasItem take an optional pointer-to-pointer. | Kohei Yoshida | |
To make it clear that the second argument is optional. | |||
2012-02-06 | Perhaps it will help to set the pointer to NULL when the item is not set. | Kohei Yoshida | |
2012-02-06 | I think it's time we had a real method for this... | Kohei Yoshida | |
This helps eliminate dozens of IS_AVAILABLE macros scattered across Calc code. I'm sure we have other similar macros like this elsewhere. | |||
2012-02-05 | switch to include-based build rather than sourced-based build | Norbert Thiebaud | |
2012-02-05 | Remove unused code | Elton Chung | |
2012-02-05 | Fixed cppcheck messages about rethrowing copy of exception. | PKEuS | |
2012-02-05 | Some cppcheck cleaning | Julien Nabet | |
2012-02-03 | Replaced String by rtl::OUString | Takeshi Abe | |
2012-01-31 | Simplify code by making getProcessComponentContext() implicit. | Stephan Bergmann | |
2012-01-31 | Move unotools/configuration.hxx to comphelper | Stephan Bergmann | |
...so that other code in comphelper can use it. | |||
2012-01-30 | fdo#44981 - remove obsolete SWAPLONG macros | Noel Grandin | |
2012-01-30 | make svl ByteString free | Caolán McNamara | |
2012-01-27 | Do not move nCurUndoAction < 0. | Stephan Bergmann | |
(Could easily happen when max undo steps is set to 1.) | |||
2012-01-23 | can't see the point of calling String::Erase before delete String | Caolán McNamara | |
2012-01-23 | Removed NfCurrencyEntry::ApplyVariableInformation(). | Mariusz Dykierek | |
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. | |||
2012-01-20 | svl: add new test to subsequenttests | Michael Stahl | |
2012-01-18 | fdo#39428 Remove/audit SvStream operator>>/<<(long) | Keith McRae | |
Replaced calls to operator<<(long) with sal::static_int_cast<sal_Int32> Replaced calls to operator>>(long) with operator>>(sal_Int32) | |||
2012-01-18 | remove unused code | Thomas Arnhold | |
2012-01-17 | Replaced SAL_INFO with SAL_WARN were applicable. | Marcel Metz | |
2012-01-17 | a can't-happen-but-do-it-correct-anyway one character fix | Eike Rathke | |
2012-01-17 | Make test code compile on Mac OS X. | Stephan Bergmann | |
2012-01-17 | Disable CppunitTest_svl_urihelper for now due to bad dependencies. | Stephan Bergmann | |
2012-01-17 | Adapted svl test_URIHelper to gbuild. | Stephan Bergmann | |
2012-01-16 | Replaced DBG_ERRORFILE with SAL_INFO. | Marcel Metz | |
2012-01-14 | Remove SvStringsDtor | August Sodora | |
2012-01-13 | use INCLUDE instead of SOLARINC, and after local includes | Eike Rathke | |
2012-01-13 | Fix for fdo43460 Part XXXVI getLength() to isEmpty() | Olivier Hallot | |
Part XXXVI Modules svl | |||
2012-01-11 | Remove SvStringISort | August Sodora | |
2012-01-11 | fdo#44636 use date acceptance patterns in number scanner | Eike Rathke | |
Get rid of the lax "any 1-2 possible date separators used with 2-3 numbers forms a date" date recognition. Use locale data's DateAcceptancePattern elements to match against, or ISO 8601 yyyy-mm-dd, or an already applied date format. | |||
2012-01-11 | lower date acceptance with only two numbers | Eike Rathke | |
2012-01-11 | strict date recognition using locale's separator and ISO 8601 | Eike Rathke | |
- Removed separators '-', '.' and '/' working in all combinations in all locales forcing a date even for 23/12.99 (if locale has DMY order) * Only the locale's date separator is accepted, plus '-' if the input may represent an ISO 8601 date yyyy-mm-dd, check is lax though on minimum digits, y-m-d is also accepted. * Additionally, accept yy-month-dd or dd-month-yy with month name. Year must be <1 or >31, 2-digit year magic for values 0,32..99 is applied, or has to be prefixed with leading zero. | |||
2012-01-11 | accept and display years < 100 | Eike Rathke | |
+ Years < 100 without being hit by the 2 digits year magic can be entered by preceding them with a leading 0 if at least 3 digits are present, e.g. 099-1-1 is year 99, not 1999. + Years < 100 in an yyyy format are always displayed as 0099. | |||
2012-01-10 | Remove _SVSTDARR_STRINGSISORTDTOR | August Sodora | |
2012-01-10 | simplify LocalFileHelper::ConvertURLToPhysicalName | Caolán McNamara | |
2012-01-09 | toLower->lowercase | Caolán McNamara | |
2012-01-09 | simplify CharClass | Caolán McNamara | |
multiple variants of toUpper (etc) some that take a non-const OUString or String and modify it some that take a const OUString or String and return a new one some that take part of a const OUString or String and return a new one | |||
2012-01-07 | Remove superfluous _ZFORLIST_DECLARE_TABLE definition. | Marcel Metz | |
2012-01-06 | Removed unnecessary tools/debug.hxx includes. | Marcel Metz | |
2012-01-06 | make ReadUniOrByteString return a string | Caolán McNamara | |
2012-01-05 | getPropertyMap can return a reference instead of a pointer | Caolán McNamara | |
2012-01-05 | Translated German comments | Christina Rossmanith | |
2012-01-05 | removed unused #define_SVSTDARR_sal_uI(n)t16S(SORT) | Christina Rossmanith | |
2012-01-06 | catch exception by constant reference | Takeshi Abe | |
2012-01-05 | Removed unnecessary tools includes. | Marcel Metz | |