summaryrefslogtreecommitdiff
path: root/sc/source
AgeCommit message (Collapse)Author
2012-02-17Removed unused header includeTakeshi Abe
2012-02-15fdo#46070: Allow copying of adjacent cells via Fill Down/Up/Left/Right.Kohei Yoshida
2012-02-15Various string function clean upStephan 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-14More String to rtl::OUString conversion while I'm at it.Kohei Yoshida
2012-02-14Get sc to build once again with debug=true.Kohei Yoshida
2012-02-14String to rtl::OUString in the xls pivot table import code.Kohei Yoshida
2012-02-14auto_ptr to scoped_ptr.Kohei Yoshida
2012-02-14More, boolean-related cleanup. Removed unused data members.Kohei Yoshida
2012-02-14Removed code that's no longer relevant.Kohei Yoshida
2012-02-14Fixed 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-14Try to preserve the orientation of data layout dimension.Kohei Yoshida
2012-02-14Remove std::auto_ptr in favor of boost::scoped_ptr.Kohei Yoshida
2012-02-14Handle 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-14Correctly set pivot's popup flag when importing from Excel docs.Kohei Yoshida
2012-02-14Removed 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-14cleanup namedlg.cxxMarkus Mohrhard
remove unneeded comments, includes and macros
2012-02-13Use separate iterators for column and formula data.Kohei Yoshida
2012-02-13make the return statement more visibleIvan Timofeev
2012-02-13fdo#45916: Ensure formula cell's pCode isn't NULL even when compilation fails.Kohei Yoshida
2012-02-13Remove unused codeElton Chung
2012-02-13some 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-13Improvment of Custom Sheet Prefix OptionAlbert Thuswaldner
2012-02-13Move it down a bit, to hopefully get Norbert's Mac tinderbox to build.Kohei Yoshida
2012-02-10unusedcode: remove XclObjId and unused typedefsMatúš Kukan
2012-02-10Cleaned 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-10String to rtl::OUString.Kohei Yoshida
2012-02-10Fixed the accidental swapping of equality / non-equality condition.Kohei Yoshida
This should fix Stephan's tinderbox error.
2012-02-10changes 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-10convert detdata.cxx in SC module to boost:ptr_vectorNoel Grandin
converts usage of SV_DECL_PTRARR_DEL in sc/inc/detdata.hxx and associated code to boost::ptr_vector
2012-02-10Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) to equalsAscii(...)Takeshi Abe
2012-02-10can use direct operator[] variantsCaolán McNamara
2012-02-09ByteString to rtl::OStringBuffer.Kohei Yoshida
2012-02-09Expanded macros to make it easier to work on ByteString.Kohei Yoshida
2012-02-09ByteString to rtl::OString.Kohei Yoshida
2012-02-09ByteString,UniString to rtl variants.Kohei Yoshida
2012-02-09A bit of code-sharing.Kohei Yoshida
2012-02-09Convert ByteString, UniString to rtl variants in AsciiSave.Kohei Yoshida
2012-02-09sal_Bool to bool.Kohei Yoshida
2012-02-09String to rtl::OUString.Kohei Yoshida
2012-02-09Cleaned up more header include silliness.Kohei Yoshida
2012-02-09Include dpglobal.hxx only when necessary.Kohei Yoshida
2012-02-09Really cleaned up dpglobal.hxx.Kohei Yoshida
2012-02-09Moved ScDPItemData into own files.Kohei Yoshida
2012-02-09Cleaning up ScDPItemData a bit...Kohei Yoshida
2012-02-09Moved definitions of ScDPItemData where they belong.Kohei Yoshida
2012-02-09More duplicated defines.Kohei Yoshida
2012-02-09Use names from unonames.hxx to be consistent.Kohei Yoshida
And removed duplicated defines.
2012-02-09Pivot table related uno names to have SC_UNO_DP prefix.Kohei Yoshida
2012-02-09Consolidate all these duplicated defined uno prop names for pivot table.Kohei Yoshida
They will be later merged into unonames.hxx.
2012-02-10Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("...")) to equalsAscii("...")Takeshi Abe