summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba
AgeCommit message (Collapse)Author
2011-11-24change ScRangeName's container to boost::ptr_mapMarkus Mohrhard
2011-11-23Cleaned up the ScTable declaration a bit.Kohei Yoshida
* make it officially non-copyable. It was never copied anyway. * retire std::auto_ptr which is deprecated. Let's use boost::scoped_ptr. * some unused typedef's.
2011-11-23Reducing header dependency on markdata.hxx.Kohei Yoshida
2011-11-23remove ScRangeName::findByNameMarkus Mohrhard
this method was mmisused and is the source for some "bugs" we don't allow case sensitive storage of range names and therefore it does not amke sense to search by case sensitive names, use ScRangeName::findByUpperName instead Especially the uno implementation did behave wrongly and allowed to create two names that were identicall for the model
2011-11-18Replace DeleteQuery with RemoveEntryByField.Kohei Yoshida
The latter takes care of iterating through the elements.
2011-11-05Moved ScQueryEntry into its own file set.Kohei Yoshida
Because I'll be modifying this struct in the next few days...
2011-11-04Let's not use a hard-coded MAXQUERY all over the place.Kohei Yoshida
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-11-04catch exception by const referenceTakeshi Abe
2011-10-28Add vba support for assigning names to cell rangesAugust Sodora
2011-10-18WaE: unreachable codeTor Lillqvist
2011-10-18WaE: illegal copy-initializationTor Lillqvist
warning C4928: illegal copy-initialization; more than one user-defined conversion has been implicitly applied. So use a variable of the correct type, should not affect the intent of the code.
2011-10-18WaE: unreferenced local variableTor Lillqvist
2011-10-18WaE: unreachable codeTor Lillqvist
2011-10-18WaE: 'ScVbaFormatConditions' : default constructor could not be generatedTor Lillqvist
The ScVbaFormatConditions class is used only as a target for casting, it seems, and no objects of this type are created as such, I think. So avoid MSVC warnings: warning C4510: 'ScVbaFormatConditions' : default constructor could not be generated warning C4610: class 'ScVbaFormatConditions' can never be instantiated - user defined constructor required
2011-10-10WaE: inconsistent dll linkageTor Lillqvist
2011-09-22just silence the auto_ptr deprecations in isolationCaolán McNamara
2011-09-21OSL_TRACE: Remove trailing newlinesThomas Arnhold
Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines
2011-09-10Revert partly cppcheck cleaningJulien Nabet
2011-09-10Some cppcheck cleaningJulien Nabet
2011-08-26String to rtl::OUString.Kohei Yoshida
2011-08-26catch by const refCaolán McNamara
2011-07-29tweak fix for bnc#707486 ( ensure multi-area processed for simple copy only )Noel Power
2011-07-28add prefixes for component_getFactoryMatúš Kukan
2011-07-26fix for bnc#707486 allow copy for suitable multi-area RangesNoel Power
also remove the extra CopyToClip ( and CopyToClip4VBA ), merged the functionality to remove the existing copy and paste.
2011-07-25use XFilePicker2 regardless of service, if possible, it is far more saneMichael Meeks
2011-07-12Remove component_getImplementationEnvironmentMatus Kukan
2011-07-05yet more iterator->const_iteratorCaolán McNamara
2011-07-05change remaining manual loops to ScMarkData::iteratorMarkus Mohrhard
2011-06-21catch by const referenceCaolán McNamara
2011-06-13createFromAscii -> RTL_CONSTASCII_USTRINGPARAMCaolán McNamara
2011-06-07The sheet index is a 16-bit integer. Use the same type to receive the value.Kohei Yoshida
2011-06-07Merge branch 'feature/unlimited-number-of-sheets'Markus Mohrhard
Conflicts: sc/source/core/data/dociter.cxx sc/source/core/data/table1.cxx sc/source/ui/view/preview.cxx
2011-06-03use standard template for this throughoutCaolán McNamara
2011-06-01change to SCTAB from sal_Int16 and sal_Int32 for sheet indexMarkus Mohrhard
2011-05-30cppcheck cleanliness Remove: (performance) Possible inefficient checking for ↵Korrawit Pruegsanusak
* emptiness. Released under LGPLv3+/MPL
2011-05-30Code CleanupKorrawit Pruegsanusak
* Remove empty and bogus comments * Remove dead codes * Fix typos in comments Released under LGPLv3+/MPL
2011-05-27Merge branch 'master' of git://anongit.freedesktop.org/libreoffice/calcJan Holesovsky
2011-05-27Replace DBG_* with OSL_* in sc/source/uiJacek Wolszczak
2011-05-24Merge remote-tracking branch 'origin/integration/dev300_m106'Jan Holesovsky
2011-05-23Got it to build. Mostly VBA stuff but no idea what kind of shape it is in.Kohei Yoshida
2011-05-16WaE - add explicit casting (decimal-types → integer types)Christian Lohmaier
2011-05-13Renamed dbcolect.?xx to dbdata.?xx.Kohei Yoshida
That deliberately mis-spelled header name always bothered me. Now fixed once and for all. For the record, the original file name was inspired by the 8-character rule that some of the old compilers that the Hamburg guys had to use, years and years ago.
2011-05-11some cleanup in vbaMarkus Mohrhard
2011-05-09Merge branch 'libreoffice-3-4'Kohei Yoshida
Conflicts: sc/CppunitTest_sc_ucalc.mk sc/Module_sc.mk sc/qa/unit/ucalc.cxx sc/source/core/tool/dbcolect.cxx sc/source/filter/excel/excimp8.cxx sc/source/filter/inc/excimp8.hxx sc/source/ui/docshell/impex.cxx sc/source/ui/unoobj/datauno.cxx
2011-05-09use sheet local db data in ScVbaRange::AutofilterMarkus Mohrhard
Signed-off-by: Kohei Yoshida <kyoshida@novell.com>
2011-05-08use sheet local db data in ScVbaRange::AutofilterMarkus Mohrhard
2011-04-26make VbaWorksheet Autofilter work with sheet local DBDataMarkus Mohrhard
2011-04-26fixed problem with return value in ScVbaWorksheet::createSheetCopyInNewDocMarkus Mohrhard
2011-04-25make VbaWorksheet Autofilter work with sheet local DBDataMarkus Mohrhard
2011-04-25Remove OS/2 supportFrancois Tigeot