summaryrefslogtreecommitdiff
path: root/basic/inc
AgeCommit message (Collapse)Author
2012-06-25Remove various commented out definesThomas Arnhold
Most of them in hrc files. Change-Id: I3944f6ed9befd2b498385f61b851790362221a4f
2012-06-19re-base on ALv2 code.Michael Meeks
2012-06-15callcatcher: chainsaw out some unnecessary codeCaolán McNamara
Change-Id: I88de7a942fbc9e0c51a3261236f5203f037d2392
2012-04-20WaE: MSVC2008 C2220 unsafe mix of types in operationCaolán McNamara
2012-03-23.hrc files don't need executable bitsMichael Stahl
2012-03-20remove ToDouble/ToFloatCaolán McNamara
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-06Removed useless #ifdef guardTakeshi Abe
2012-03-05Remove unused SbxMemoryStreamTor Lillqvist
2012-03-05Remove unused code from basicElton Chung
2012-03-05Convert SbxFactory from SV_DECL_PTRARR_DEL to boost::ptr_vectorNoel Grandin
2012-02-13can use a reference for singletonCaolán McNamara
2012-02-10add SbGlobal for shared static objectsMarkus Mohrhard
2012-01-31Replaced String by rtl::OUString in SbiScannerTakeshi Abe
2012-01-27SvDispatch class doesn't exist anymoreCaolán McNamara
2012-01-25Removed unused field and non-existent classTakeshi Abe
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.
2012-01-20Remove useless macrosAugust Sodora
2012-01-20Replace BasicErrorManager with std::vectorAugust Sodora
2012-01-17Remove unused macrosAugust Sodora
2012-01-16Remove unused SttResMgr from basicAugust Sodora
2012-01-16Remove unused functionAugust Sodora
2012-01-16Remove invalid friend declarationAugust Sodora
2012-01-16String->OUStringAugust Sodora
2012-01-16Remove unused enum SbLanguageModeAugust Sodora
2012-01-16Remove unused enum SbTextTypeAugust Sodora
2012-01-16Remove unused struct SbTextPortionAugust Sodora
2012-01-16Remove unnecessary using declarationAugust Sodora
2012-01-15WaE: deleting object of abstract class type with non-virtual destructorDavid Tardon
2012-01-14SV_DECL_PTRARR_DEL->boost::ptr_vectorAugust Sodora
2012-01-10callcatcher: update listCaolán McNamara
2012-01-07Remove unused class SttResIdAugust Sodora
2012-01-06Removed unnecessary tools/link.hxx includes.Marcel Metz
2011-12-13SbTextPortions, etc can completely goCaolán McNamara
2011-12-13_BASIC_TEXTPORTIONS always definedCaolán McNamara
2011-12-13callcatcher: remove newly unused codeCaolán McNamara
2011-12-09callcatcher: remove unused code post automation removalCaolán McNamara
2011-12-08Removed basic/svtmsg.hrcAugust Sodora
2011-12-08Removed basic/dispdefs.hxxAugust Sodora
2011-12-08Removed basic/process.hxxAugust Sodora
2011-12-08Remove basic/mybasic.hxxAugust Sodora
2011-12-08Remove basic/basicrt.hxxAugust Sodora
2011-12-07Remove testtoolAugust Sodora
2011-11-27remove precompiled_xxx.hxx/cxxNorbert Thiebaud
2011-11-27rmove include of pch header in basicNorbert Thiebaud
2011-11-25Fixed spelling: Spechial -> Specialmikew
2011-11-25Some German to English comment translations.mikew
2011-11-22New sal/log.h obsoletes osl/diagnose.h and tools/debug.hxx.Stephan Bergmann
* New SAL_INFO..., SAL_WARN... macros. * New SAL_STREAM supersedes OSL_FORMAT. * oustringostreaminserter.hxx moved from unotest to rtl (and always UTF-8 now). * TODO to enable GCC __attribute__((format)) in sal/log.h (requires call-site cleanup). * Further functionality in tools/debug.hxx (DBG_MEMTEST, DBG_CTOR, etc.) not yet addressed. * Some replacements tools String -> rtl::OUString.
2011-11-15Put back a method needed by Windows and reformat a bitFridrich Štrba
2011-11-15FDO#39446 [EasyHack] Bloat Removal. Removing uncallable code with callcatcherJulien Chaffraix
Removed most unused symbols in basic/. The remaining symbols (SdxDecimal) are Windows specific and thus should be double-checked on a Windows machine prior to removal.