Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-02-17 | Removed unused header include | Takeshi Abe | |
2012-02-15 | fdo#46070: Allow copying of adjacent cells via Fill Down/Up/Left/Right. | Kohei Yoshida | |
2012-02-15 | Various string function clean up | Stephan Bergmann | |
Added: * rtl::OString::matchL * rtl::OString::endsWith * rtl::OString::endsWithL * rtl::OString::indexOfL * rtl::OString::replaceFirst * rtl::OString::replaceAll * rtl::OString::getToken * rtl::OUString::endsWith * rtl::OUString::replaceFirst * rtl::OUString::replaceFirstAsciiL * rtl::OUString::replaceFirstAsciiLAsciiL * rtl::OUString::replaceAll * rtl::OUString::replaceAllAsciiL * rtl::OUString::replaceAllAsciiLAsciiL * rtl::OUString::getToken plus underlying C functions where necessary Deprecated: * comphelper::string::remove * comphelper::string::getToken Removed: * comphelper::string::searchAndReplaceAsciiL * comphelper::string::searchAndReplaceAllAsciiWithAscii * comphelper::string::searchAndReplaceAsciiI * comphelper::string::replace * comphelper::string::matchL * comphelper::string::matchIgnoreAsciiCaseL * comphelper::string::indexOfL Also fixed some apparent misuses of RTL_CONSTASCII_USTRINGPARAM -> RTL_CONSTASCII_STRINGPARAM. | |||
2012-02-14 | More String to rtl::OUString conversion while I'm at it. | Kohei Yoshida | |
2012-02-14 | Get sc to build once again with debug=true. | Kohei Yoshida | |
2012-02-14 | String to rtl::OUString in the xls pivot table import code. | Kohei Yoshida | |
2012-02-14 | auto_ptr to scoped_ptr. | Kohei Yoshida | |
2012-02-14 | More, boolean-related cleanup. Removed unused data members. | Kohei Yoshida | |
2012-02-14 | Removed code that's no longer relevant. | Kohei Yoshida | |
2012-02-14 | Fixed ODS import filter to correctly identify data layout dimension. | Kohei Yoshida | |
And cleaned up the code a bit. The new code should be much more robust. | |||
2012-02-14 | Try to preserve the orientation of data layout dimension. | Kohei Yoshida | |
2012-02-14 | Remove std::auto_ptr in favor of boost::scoped_ptr. | Kohei Yoshida | |
2012-02-14 | Handle painting of data layout dimension button correctly during refresh. | Kohei Yoshida | |
Data layout dimension can be anywhere in the row/column fields. Use the appropriate boolean property to determine if the field is data layout. | |||
2012-02-14 | Correctly set pivot's popup flag when importing from Excel docs. | Kohei Yoshida | |
2012-02-14 | Removed the incorrect assumption about the data layout field. | Kohei Yoshida | |
The Excel import filter code assumed that the data layout field be always the last row field, which is totally wrong. The data layout field can be at any column/row field position in fact. | |||
2012-02-14 | cleanup namedlg.cxx | Markus Mohrhard | |
remove unneeded comments, includes and macros | |||
2012-02-13 | Use separate iterators for column and formula data. | Kohei Yoshida | |
2012-02-13 | make the return statement more visible | Ivan Timofeev | |
2012-02-13 | fdo#45916: Ensure formula cell's pCode isn't NULL even when compilation fails. | Kohei Yoshida | |
2012-02-13 | Remove unused code | Elton Chung | |
2012-02-13 | some very minor tweak(s) to "Improvment-of-Custom-Sheet-Prefix-Option" | Noel Power | |
a) allow blank default prefix b) select the entire last good prefix is some illegal character used | |||
2012-02-13 | Improvment of Custom Sheet Prefix Option | Albert Thuswaldner | |
2012-02-13 | Move it down a bit, to hopefully get Norbert's Mac tinderbox to build. | Kohei Yoshida | |
2012-02-10 | unusedcode: remove XclObjId and unused typedefs | Matúš Kukan | |
2012-02-10 | Cleaned up ScDPSource and ScDPMember(s) a bit. | Kohei Yoshida | |
* boolean, string conversion. * removing virtual keywords when it makes no sense. * privatize methods that are called only from within. * removed methods that are not used. * etc. | |||
2012-02-10 | String to rtl::OUString. | Kohei Yoshida | |
2012-02-10 | Fixed the accidental swapping of equality / non-equality condition. | Kohei Yoshida | |
This should fix Stephan's tinderbox error. | |||
2012-02-10 | changes to "convert detdata.cxx in SC module to boost:ptr_vector" | Eike Rathke | |
* for includes from other modules use <> instead of "", i.e. <boost/ptr_container/ptr_vector.hpp> * use size_t instead of int for container positions and count * no need for DeleteAndDestroy(), in fact delete p followed by ptr_vector::erase() attempted to delete the instance twice and would crash * adapted places that accessed DeleteAndDestroy() to operate on the vector instead * introduced GetDataVector() for that * changed the DeleteOnTab() loop that used DeleteAndDestroy() to properly iterate over the container instead * changed UpdateReference() to a loop using iterator * changed operator==() to use size_t instead of sal_uInt16 * note aside: mixing sal_uInt16 with a container's size isn't a good idea * adapted places that access Count() and GetObject() to use size_t instead of sal_uInt16 * made GetObject() const and return const ScDetOpData* * changed indentation to 4 spaces per level | |||
2012-02-10 | convert detdata.cxx in SC module to boost:ptr_vector | Noel Grandin | |
converts usage of SV_DECL_PTRARR_DEL in sc/inc/detdata.hxx and associated code to boost::ptr_vector | |||
2012-02-10 | Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) to equalsAscii(...) | Takeshi Abe | |
2012-02-10 | can use direct operator[] variants | Caolán McNamara | |
2012-02-09 | ByteString to rtl::OStringBuffer. | Kohei Yoshida | |
2012-02-09 | Expanded macros to make it easier to work on ByteString. | Kohei Yoshida | |
2012-02-09 | ByteString to rtl::OString. | Kohei Yoshida | |
2012-02-09 | ByteString,UniString to rtl variants. | Kohei Yoshida | |
2012-02-09 | A bit of code-sharing. | Kohei Yoshida | |
2012-02-09 | Convert ByteString, UniString to rtl variants in AsciiSave. | Kohei Yoshida | |
2012-02-09 | sal_Bool to bool. | Kohei Yoshida | |
2012-02-09 | String to rtl::OUString. | Kohei Yoshida | |
2012-02-09 | Cleaned up more header include silliness. | Kohei Yoshida | |
2012-02-09 | Include dpglobal.hxx only when necessary. | Kohei Yoshida | |
2012-02-09 | Really cleaned up dpglobal.hxx. | Kohei Yoshida | |
2012-02-09 | Moved ScDPItemData into own files. | Kohei Yoshida | |
2012-02-09 | Cleaning up ScDPItemData a bit... | Kohei Yoshida | |
2012-02-09 | Moved definitions of ScDPItemData where they belong. | Kohei Yoshida | |
2012-02-09 | More duplicated defines. | Kohei Yoshida | |
2012-02-09 | Use names from unonames.hxx to be consistent. | Kohei Yoshida | |
And removed duplicated defines. | |||
2012-02-09 | Pivot table related uno names to have SC_UNO_DP prefix. | Kohei Yoshida | |
2012-02-09 | Consolidate all these duplicated defined uno prop names for pivot table. | Kohei Yoshida | |
They will be later merged into unonames.hxx. | |||
2012-02-10 | Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("...")) to equalsAscii("...") | Takeshi Abe | |