summaryrefslogtreecommitdiff
path: root/svl
AgeCommit message (Collapse)Author
2012-03-28callcatcher: regenerate listCaolán McNamara
2012-03-27UniString removal.Kohei Yoshida
2012-03-26readUnicodeString can just return the stringCaolán McNamara
seeing as no-one checks the return value, we don't need the intermediate temporary string
2012-03-26dead helper dirCaolán McNamara
2012-03-25svl: add include path and more add_package_headersMatúš Kukan
2012-03-20reduce UniStringsCaolán McNamara
2012-03-20split macros to elide unneeded methodsCaolán McNamara
2012-03-20SfxUINT32s->std::vectorCaolán McNamara
2012-03-18Add parenthesis for avoid false report by cppcheckJulien Nabet
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann
...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed.
2012-03-14callcatcher: update listCaolán McNamara
2012-03-12ditch SfxULongRangesCaolán McNamara
2012-03-12WaE: cast to pointer from integer of different sizeDavid Tardon
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan
2012-03-08Convert from tools/table.hxx to std::map in SvxMacroTableDtorNoel Grandin
In this case, we also convert from storing pointers to storing the items directly because SvxMacroTableDtor completely controls the lifecycle of the SvxMacro objects it contains. Also add an operator== to SvxMacroTableDtor and remove the out-of-line implementations of equals from two other places.
2012-03-05String to OUString in cell.[ch]xx and follow upMarkus Mohrhard
2012-02-28fixed crashes due to transition from Table to std::mapEike Rathke
Old code used Table Seek/Next followed by GetCurKey() that returned -1 (or some such? anyway) if after the last element, comparing with another key. Replacement code did not check for valid iterators. Crash happened when changing the locale within the number formatter and obtaining the default currency format. May also have happened when changing the default locale and documents using a number formatter were open.
2012-02-28SfxStyleSheet needs a default ctorCaolán McNamara
due to use of ImplInheritanceHelper2 SfxStyleSheet needs a default ctor, though its never called. rearrange things a little so we can have an empty ctor without pulling in a bunch of code which is never executed
2012-02-28remove dangling legacy binary-compatible between-milestons temp hack nonsenseCaolán McNamara
2012-02-27SfxItemPool: replace deque with vector for SfxPoolItem arrayMichael Stahl
Yields measurable speedup on load/store of large documents, wonder where the equivalent patch i committed long time ago to OOo went...
2012-02-27Removed unused codeSzabolcs Dezsi
2012-02-27drop UniString::CreateFromInt64Caolán McNamara
2012-02-23Get rid of CREATEVERSIONRESMGR[_NAME]Stephan Bergmann
2012-02-22OUString ctor for string literals without RTL_CONSTASCII stuffLuboš Luňák
http://lists.freedesktop.org/archives/libreoffice/2012-February/025662.html
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann
2012-02-19Remove unused codePetr Vorel
2012-02-19Remove unused codeElton Chung
2012-02-17Removed unused code from svl and sfx2Szabolcs Dezsi
2012-02-17EasyHack 42790: get rid of PRODUCTLaurent Balland-Poirier
Preprocessor constant PRODUCT is replaced by !DBG_UTIL
2012-02-16callcatcher: update unused code listCaolán McNamara
2012-02-16Use RTL_CONSTASCII_STRINGPARAM instead of bare numberTakeshi Abe
2012-02-14Remove some more outdated sunpro tracesThomas Arnhold
On Solaris gcc should be used. See: 514cefbcb7b800f8ddd2aa595502f4fe8403882f 19480ddf483174e956bd658b76380dbe499678dd
2012-02-13EasyHack: Removed gcc conditionalsAlexander Bergmann
2012-02-13WaE: NULL vs 0 with mingwCaolán McNamara
2012-02-13fix windows build, String::GetTokenCount is goneCaolán McNamara
2012-02-10fdo#39491 more of unnecessary include pathsMatúš Kukan
2012-02-10fdo#39491 remove nonexistent include pathsMatúš Kukan
2012-02-10fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan
2012-02-09Replaced String by rtl::OUString in SvxMacroTakeshi Abe
2012-02-08changes to "tools/table.hxx to std::map conversion"Eike Rathke
* use consistent indenting with 4 spaces (instead of tabs (plus one space)) * use erase(it++) instead of erase(it); ++it to not access invalidated iterator * for First(); Remove(); Next() loops over entire Table use map::clear() at the end if it isn't in a dtor * use existing typedef SvNumberFormatTable in numfmtsh.hxx instead of redefining, which means include zforlist.hxx now and some other forward declarations can be removed * removed inlined duplicated code of GetEntry(), implemented it in zforlist.cxx instead and made const GetFormatEntry() just call GetEntry() * removed the temporary sal_uIntPtr nFormat to be used as key, the sal_uIntPtr was only used because Table effectively had pointer size as keys. * made initial assignments of nDefaultFormat and nDefaultCurrencyFormat use the ternary conditional operator
2012-02-08tools/table.hxx to std::map conversion in SV, SVL and SVX modulesNoel Grandin
This patch converts one use of tools/table.hxx in svl/inc/svl/zforlist.hxx, whose use in turn spans 3 modules.
2012-02-08update unused listCaolán McNamara
2012-02-07Reintroduce MSVC workaroundStephan Bergmann
...originally introduced with 02abccf953185f266979aafd946f5b96c5d59875 but erroneously purged with 9c2f7056a82c4d7719715ca1c77f8dd4c17aa24c.
2012-02-07Have SfxItemSet::HasItem take an optional pointer-to-pointer.Kohei Yoshida
To make it clear that the second argument is optional.
2012-02-06Perhaps it will help to set the pointer to NULL when the item is not set.Kohei Yoshida
2012-02-06I think it's time we had a real method for this...Kohei Yoshida
This helps eliminate dozens of IS_AVAILABLE macros scattered across Calc code. I'm sure we have other similar macros like this elsewhere.
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud
2012-02-05Remove unused codeElton Chung
2012-02-05Fixed cppcheck messages about rethrowing copy of exception.PKEuS
2012-02-05Some cppcheck cleaningJulien Nabet