summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/queryparam.cxx
AgeCommit message (Collapse)AuthorFilesLines
2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák1-1/+1
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
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-06-09Remove superfluous include commentsThomas Arnhold1-3/+0
Change-Id: Ie5792855761b9be209bf3fa2cba9e6998523c982
2012-06-06Use iterators over index access.Kohei Yoshida1-0/+10
This makes ValidQuery *slightly* faster. Change-Id: I9fff6099b597d7a8d4d5a4358099348baa657802
2011-11-27remove include of pch header from scNorbert Thiebaud1-2/+0
2011-11-18Populate the query entries directly.Kohei Yoshida1-8/+16
2011-11-18Store filter orientation in the query param.Kohei Yoshida1-1/+7
2011-11-18Replace DeleteQuery with RemoveEntryByField.Kohei Yoshida1-14/+0
The latter takes care of iterating through the elements.
2011-11-18A little cleanup.Kohei Yoshida1-17/+21
2011-11-18Remove the query entry when all items are selected.Kohei Yoshida1-0/+24
2011-11-18Now the new popup works somewhat as expected.Kohei Yoshida1-2/+27
2011-11-18Handle query after the popup gets dismissed by clicking OK.Kohei Yoshida1-0/+6
But it's not working right. :-(
2011-11-14No more pSpecial treatment of empty / non-empty queries.Kohei Yoshida1-1/+1
2011-11-14Revert "Revert "Removing the mixed comparison flag, which is no longer needed.""Kohei Yoshida1-4/+2
This reverts commit 7d7036c235a92268f23cc04eab8abcb08cddeb3f.
2011-11-11Revert "Removing the mixed comparison flag, which is no longer needed."Kohei Yoshida1-2/+4
This reverts commit eaea417bfdf8d06df2b7f2e42c904c32ce77e871.
2011-11-10Removing the mixed comparison flag, which is no longer needed.Kohei Yoshida1-4/+2
This flag was introduced years ago to deal with Excel's behavior on incorrectly sorted data range. But later versions of Excel no longer follow that behavior & keeping this flag would make the evaluation code unnecessarily more complex & hard to adopt to multi-item matching.
2011-11-07Simplified the filter test a bit, and clear the filter afterward.Kohei Yoshida1-4/+3
2011-11-07Changed data storage structure in ScQueryEntry.Kohei Yoshida1-7/+8
This required a whole bunch of chnages all over the place.
2011-11-07String->OUString in ScDocument and follow upMarkus Mohrhard1-1/+2
2011-11-05Moved ScQueryEntry into its own file set.Kohei Yoshida1-185/+27
Because I'll be modifying this struct in the next few days...
2011-11-04Hide the query strings member, and add relevant methods for it.Kohei Yoshida1-15/+55
2011-11-04Do the simple string equality matching in ScQueryEntry instead.Kohei Yoshida1-2/+10
2011-11-04Set pStr private and discovered several more direct access to this member.Kohei Yoshida1-9/+9
2011-11-04Remove direct access to the query string (pStr).Kohei Yoshida1-0/+15
I'm about half-way through.
2011-11-04Calling delete on NULL pointer is safe.Kohei Yoshida1-15/+8
2011-11-04Moved ScQueryEntry out of global.?xx to queryparam.?xx.Kohei Yoshida1-0/+103
This is more appropriate.
2011-11-04const correct ness etc & mutable only for lazy-initializing accessor.Kohei Yoshida1-4/+9
2011-11-04Let's not use a hard-coded MAXQUERY all over the place.Kohei Yoshida1-7/+10
For now, the maximum query size is determined by the size of the vector that holds the entries. For now, the size of the vector is fixed, and won't change. We may later work on making it dynamically sized, however...
2011-05-10Have ScDBData use ScQueryParam as data member.Kohei Yoshida1-1/+1
2011-04-01Removed the dynamic row bits from the db range. It was a hack.Kohei Yoshida1-13/+3
This concept was there before the Hamburg added their own mechanism to allow dynamic expansion of db ranges. There is no need to have two of them, or it would cause weird problems.
2011-03-10Merge commit 'ooo/DEV300_m101' into integration/dev300_m101Kohei Yoshida1-9/+9
2011-03-02Move DBG_ERROR to OSL_FAILThomas Arnhold1-1/+1
2011-01-21Remove old RCS lines.Thomas Arnhold1-3/+0
2011-01-19Ported calc-formula-db-function-fix.diff from the build repo.Kohei Yoshida1-0/+17
This patch fixes n#594332 and n#595713.
2011-01-17removetooltypes01: #i112600# remove tooltypes from scMikhail Voytenko1-9/+9
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-09-15sc-dbrange-dynamic-resize.diff: Dynamically resize filtered range.Kohei Yoshida1-3/+13
n#352662, i#85305 Dynamically resize filtered range when new data rows are present.
2010-03-05koheiextref01: I forgot to initialize data members properly.Kohei Yoshida1-1/+5
2009-11-26When deleting a query entry, I need to append an empty one.Kohei Yoshida1-1/+5
We need to ensure that the size of the query entries don't change after deleting a query entry.
2009-09-16last cleanup - use vector to store an array of ScQueryEntry, instead of the ↵Kohei Yoshida1-44/+46
old-fashioned c-style dynamic array.
2009-09-16removed the duplicated ScTable::ValidQuery.Kohei Yoshida1-4/+24
2009-09-16Moved the string flag from the iterator to the query param struct.Kohei Yoshida1-0/+1
2009-09-09#i102750# more work toward supporting external refs in DB functions. Still ↵Kohei Yoshida1-18/+60
a long way to go...
2009-09-09#i102750# initial refactoring in an effort to support external references in ↵Kohei Yoshida1-0/+296
DSUM, DGET etc. Not finished yet.