summaryrefslogtreecommitdiff
path: root/sc/source/ui/dbgui/csvgrid.cxx
AgeCommit message (Collapse)AuthorFilesLines
2014-10-31convert COMMAND_WHEEL constants to an enumNoel Grandin1-1/+1
Change-Id: I413d821a984ab556bd19c52704c04de6d828f699
2014-09-30sc: std::auto_ptr -> std::unique_ptrStephan Bergmann1-1/+1
Change-Id: I25468d578de597ff9aeba3ffc850c630fa532767
2014-09-30fdo#82577: Handle PolyPolygonNoel Grandin1-1/+1
Put the TOOLS PolyPolygon class in the tools namespace. Avoids clash with the Windows PolyPolygon typedef. Change-Id: I811ecbb3d55ba4ce66e4555a8586f60fcd57fb66
2014-09-30fdo#82577: Handle RegionNoel Grandin1-2/+2
Put the VCL Region class in the vcl namespace. Avoids clash with the X11 Region typedef. Change-Id: I6e008111df7cf37121fbc3eaabd44a8306338291
2014-08-23fdo#82577: Handle KeyCodeTor Lillqvist1-1/+1
Put the VCL KeyCode class in the vcl namespace. Avoids clash with the X11 KeyCode typedef. Change-Id: I624c9d937f7c5f5986d313b6c5f060bd8bb7e028
2014-06-25remove whitespaceMarkus Mohrhard1-9/+0
Change-Id: Ib15413e73409cc33de01fa92a47b9d1237cfc4b2
2014-04-15CID#1202973 init class membersEike Rathke1-1/+3
Change-Id: Ib14d24970faa35ad0caf8c8a8bf7f9cef5764b89
2014-04-06whitespace cleanup in scMarkus Mohrhard1-6/+0
Change-Id: Id1dcadcac179c52977e48a6912ce4d5fd542f60c
2014-03-03Remove visual noise from scAlexander Wilms1-3/+3
Conflicts: sc/source/ui/inc/docfunc.hxx Change-Id: I9314437ed3dd60e84d28c08ac0a2d1ed7bd1daf8 Reviewed-on: https://gerrit.libreoffice.org/8301 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-02-21vcl: sal_Bool -> boolStephan Bergmann1-2/+2
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
2014-02-20Remove vcl/settings.hxx from vcl/svapp.hxx and vcl/outdev.hxxTobias Lippert1-1/+1
Added vcl/settings.hxx to all cxx files which require it. This helps to speed up compilation after changes to the settings. Conflicts: sc/source/ui/dbgui/pvlaydlg.cxx Change-Id: I211a0735c47f72d6879f6f15339355abfe0e3cf4 Reviewed-on: https://gerrit.libreoffice.org/7933 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-11-05convert xub_StrLen to sal_Int32Noel Grandin1-2/+2
Converts code that calls comphelper::string::getTokenCount() to use sal_Int32 to store the return value. Change-Id: I439605a39d29b1309649e30f3ff40dfa412efcde
2013-10-11yes, placement of parentheses is important :-/Eike Rathke1-1/+1
Change-Id: I606efefada9529571e5a400da65592905200b987
2013-10-10fixed !!br0ken CSV import previewEike Rathke1-3/+4
Regression introduced with 24c079605645cf29ba366ca39b7c1177da8b317f Previous String ctor accepted length > string length, whereas OUString::copy() does not. Change-Id: If51e6df4e236a59ab0302d2bb683ca8e6d148bd0
2013-10-08convert sc/source/ui/dbgui/*.cxx from String to OUStringNoel Grandin1-7/+7
Change-Id: Iba489d8301f8885dee919e5a433281ce3761988f
2013-10-04convert sc/source/ui/inc/c*.hxx from String to OUStringNoel Grandin1-11/+11
Change-Id: I364aeba561a0f6688924fddc55634f83fe5045f6
2013-10-04convert sc/source/ui/inc/i*.hxx from String to OUStringNoel Grandin1-4/+4
Change-Id: I856c9b2a286da2fd41e88ec14c0a77bc3546b0c4
2013-10-03de-GetBuffer calcCaolán McNamara1-2/+2
Change-Id: I6bb013cc32d5b363dd08738543b1fb834d39f516
2013-07-09Mark as constTakeshi Abe1-2/+2
Change-Id: I2abf0a6887f916111895d172b0dffd54901c5aa2
2013-04-20fdo#63154: Change Min/Max/Abs for std::min/max/absMarcos Paulo de Souza1-18/+18
Now all these usages were removed from LO. Change-Id: I8a7233db20abdcdbb18428ad4004c78cc516a0e6 Reviewed-on: https://gerrit.libreoffice.org/3326 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák1-4/+4
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
2013-03-26fixed some 7d1f4cdec307bb1e761bb5dd3d8231bba5833e10 brokennessEike Rathke1-6/+6
7d1f4cdec307bb1e761bb5dd3d8231bba5833e10 changed String::GetToken() to expect and return a sal_Int32 and return -1 instead of STRING_NOTFOUND. So far so good though not consistent, but unfortunately it also replaced STRING_NOTFOUND with -1 in a few other places like where String::Search() is called but that still returns STRING_NOTFOUND ... Change-Id: I1ef1891cef220c1f1f9032af173d80f3f0e29e71
2013-03-11fdo#38838: Converting String/UniString to OUStringelixir1-4/+4
Change-Id: If64db96005fcd8a42e4fa24041867b99183965f9 Reviewed-on: https://gerrit.libreoffice.org/2586 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-02-24make ScCsvGrid robust against early show before valid column limit setCaolán McNamara1-0/+4
Change-Id: I36741d9b5826900f88451ffdbe07c44e39f381b4
2013-02-22fdo#38838 search replace for String::CreateFromInt32().Jean-Noël Rouvignac1-1/+1
I ran the following code replace: s/(Uni|Xub)?String\s*::\s*CreateFromInt32/OUString::number/ Change-Id: I45edaec4de2481ad45f9bcae2e280d5aca487714 Reviewed-on: https://gerrit.libreoffice.org/2281 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2012-12-04re-base on ALv2 code. Includes:Michael Meeks1-23/+14
Patches contributed by Herbert Duerr i#118735 prevent endless loop if vlookup/hlookup doesn't find anything http://svn.apache.org/viewvc?view=revision&revision=1239673 Patches contributed by Andre Fischer remove lp_solver http://svn.apache.org/viewvc?view=revision&revision=1199180 i#118160: Added external CoinMP library. http://svn.apache.org/viewvc?view=revision&revision=1233909 Patches contributed by Armin Le-Grand i#118485 - Styles for OLEs are not saved. http://svn.apache.org/viewvc?view=revision&revision=1182166 i#118524: apply patch, followup fixes to 118485 http://svn.apache.org/viewvc?view=revision&revision=1186077 Patches contributed by lihuiibm i#108860 - Fix range validation. http://svn.apache.org/viewvc?view=revision&revision=1242846 i#118954 Chart data will lost after copy to different file http://svn.apache.org/viewvc?view=revision&revision=1301345 Patches contributed by Ariel Constenla-Haile Fix Linux build breaker: extra qualification on member http://svn.apache.org/viewvc?view=revision&revision=1301591 i#118696 - i#118697 - Fix some Sheet Tab Color API issues http://svn.apache.org/viewvc?view=revision&revision=1225428 i#118697 - Fix uninitialized variable http://svn.apache.org/viewvc?view=revision&revision=1225859 i#118771 - ScUndoImportTab should preserve tab background color http://svn.apache.org/viewvc?view=revision&revision=1230356 i#118921 - Repaint linked sheet tab background color after updating link http://svn.apache.org/viewvc?view=revision&revision=1245177 i#118927 - Undo/Redo "Update Link" does not reset sheet tab color http://svn.apache.org/viewvc?view=revision&revision=1245241 i#118747 - Copy tab color when transferring sheets across documents http://svn.apache.org/viewvc?view=revision&revision=1230355 Patch contributed by Oliver Rainer-Wittman i#118012 - methods <ScBroadcastAreaSlot::AreaBroadcast(..)> and <ScBroadcastAreaSlot::AreaBroadcastInRange(..)> adapt stl-container iteration in order to avoid destroyed iterators during iteration. http://svn.apache.org/viewvc?view=revision&revision=1297916 Patches contributed by Mathias Bauer gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 http://svn.apache.org/viewvc?view=revision&revision=1396797 http://svn.apache.org/viewvc?view=revision&revision=1397315 Patch contributed by Daniel Rentz calc69: #i116936# fix VBA symbol Cells http://svn.apache.org/viewvc?view=revision&revision=1172135 Patches contributed by leiw: i#118546 CPU 100% on switched off AutoCalculate with Conditional Formatting on date values http://svn.apache.org/viewvc?view=revision&revision=1301380 Re-add new function documentation. Many various cleanups. Add missing calc66: #o11817313# also look at formula result number format, remove redundant binaries.
2012-10-12mark lcl_ functions static or rename them if they are not local at allLuboš Luňák1-1/+1
http://lists.freedesktop.org/archives/libreoffice/2012-October/039639.html Change-Id: I231f0b367bf0b513c6c1ce4c4cfdb7c3dc8660d5
2012-08-01resolved fdo#53012 crash in CSV fixed width importEike Rathke1-1/+2
8cd05e9cf1152b21528c6f1a5bda3d949dc49791 changed from using String to OUString. ScCsvGrid::ImplSetTextLineFix() attempted to copy excess characters (always CSV_MAXSTRLEN if greater than field width) where String::Copy() silently ignored the excess length but OUString::copy() may result in invalid memory accesses and asserts in dbgutil build. Change-Id: Ic9f7f38d6f2bbd770d6356e1304de8e39c09e30b
2012-07-09some UniString->rtl::OUStringCaolán McNamara1-2/+2
Change-Id: Ie69b30094da25df23a36baca2c7723d6a41f48c3
2012-06-09Remove superfluous include commentsThomas Arnhold1-3/+0
Change-Id: Icd57ca7fd89e30c190c1b06dbe67c30bea8d1b59
2012-04-10resolved fdo#48516 use "max columns exceeded" message if appropriateEike Rathke1-1/+4
In CSV import, instead of SCWARN_IMPORT_RANGE_OVERFLOW use SCWARN_IMPORT_ROW_OVERFLOW and SCWARN_IMPORT_COLUMN_OVERFLOW that already existed, additionally introduced SCWARN_IMPORT_CELL_OVERFLOW if single field data exceeds STRING_MAXLEN. Row overflow takes precedence over column overflow that takes precedence over cell overflow.
2012-04-10resolved fdo#48501 enable line size >64k in SvStream::Read*Line()Eike Rathke1-13/+12
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-01-05add a comphelper::string::getTokenCountCaolán McNamara1-1/+2
suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
2011-11-27remove include of pch header from scNorbert Thiebaud1-2/+0
2011-05-27Replace DBG_* with OSL_* in sc/source/uiJacek Wolszczak1-1/+1
2011-03-10Merge commit 'ooo/DEV300_m101' into integration/dev300_m101Kohei Yoshida1-4/+4
2011-03-01Remove bogus comments.Guillaume Poussel1-1/+1
2011-01-17removetooltypes01: #i112600# remove tooltypes from scMikhail Voytenko1-4/+4
2010-12-03more Sal n elementsKenneth Venken1-1/+2
2010-12-01Resolves: rhbz#658304 late-init color config. to avoid crash on recoveryDavid Tardon1-10/+25
2010-11-25cppcheck: methods can be constCaolán McNamara1-2/+4
2010-10-13Add vim/emacs modelines to all source filesSebastian Spaeth1-0/+2
Fixes #fdo30794 Based on bin/add-modelines script (originally posted in mail 1286706307.1871.1399280959@webmail.messagingengine.com) Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2010-03-22CWS-TOOLING: integrate CWS koheicsvimportVladimir Glazunov1-1/+2
2010-02-17CWS-TOOLING: integrate CWS changefileheader2Vladimir Glazunov1-4/+1
Notes: split repo tag: calc_ooo/DEV300_m72 split repo tag: calc_ooo/DEV300_m73
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun ↵Jens-Heiner Rechtien1-4/+1
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2010-01-19Rebased to DEV300_m69.Kohei Yoshida1-11/+7
2010-01-08#i107450#: build all other modules with new editeng libMathias Bauer1-4/+4
2009-10-16#i103496#: split svtools; improve ConfitItemsMathias Bauer1-11/+7
2009-07-27#i3687# #i97416#: initial porting of patches from ooo-build.Kohei Yoshida1-1/+2
2008-07-01INTEGRATION: CWS dr62 (1.28.54); FILE MERGEDVladimir Glazounov1-13/+21
2008/06/03 12:53:50 dr 1.28.54.1: #i67432# #i23602# performance with Unicode, text color