summaryrefslogtreecommitdiff
path: root/framework
AgeCommit message (Collapse)Author
2014-04-14typo: implicitely -> implicitlyThomas Arnhold
2014-04-14typo: stoped -> stoppedThomas Arnhold
2014-04-14typo: inidcates -> indicatesThomas Arnhold
2014-04-14typo: hierarchie -> hierarchyThomas Arnhold
2014-04-14typo: befor -> beforeThomas Arnhold
2014-04-14typo: independend -> independentThomas Arnhold
2014-04-14typo: dependend -> dependentThomas Arnhold
2014-04-10It's "its", not "it's"Tor Lillqvist
Change-Id: Ieaa787afd7cc622b4750a2ee8f17f6dad934ba63
2014-04-09Remove unused functionsStephan Bergmann
Change-Id: I0f305ef5b9f13e3516b3bbf45d405fad5115521a
2014-04-07framework: sal_Bool->boolNoel Grandin
Change-Id: Ia6e87e2b382bd4005637e14088bde9e809996a25
2014-04-07coverity#706548 Uncaught exceptionCaolán McNamara
Change-Id: Ie3be6d503b50cfa86be8fff162d01a72c6b47bf7
2014-04-06Typo: s/ouer/ourTor Lillqvist
Change-Id: I0179678c6c5dd6a05b1d7d5038a901e7bf2af3de
2014-04-06Bin empty @seealso, @param, @return etc metacommentsTor Lillqvist
Change-Id: I9582afceb5daf5993bfca1445370d8a60030c3c5
2014-04-06Bin empty @seealso, @param, @return and @onerror metacommentsTor Lillqvist
Change-Id: I30a761a21a98419816c4b67258664becd79e2db1
2014-04-06Kill superfluous spacing before semicolonsTor Lillqvist
Change-Id: I53689e78221f3fe074e47d6b47f1a2c3fef96222
2014-04-06Kill superfluous vertical whitespaceTor Lillqvist
Change-Id: Ia1bb2b40c74efb17e655dd6f00d7ba48c16c65ae
2014-04-03Remove redundant pure overridesStephan Bergmann
Change-Id: Ic5e50643d41c08900377a34676c2ff17977643c0
2014-04-03remove unnecessary scope qualifier from sal_Bool usesNoel Grandin
i.e. convert "::sal_Bool" to "sal_Bool" Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067
2014-04-01Explicitly mark overriding destructors as "virtual"Stephan Bergmann
It appears that the C++ standard allows overriding destructors to be marked "override," but at least some MSVC versions complain about it, so at least make sure such destructors are explicitly marked "virtual." Change-Id: I0e1cafa7584fd16ebdce61f569eae2373a71b0a1
2014-04-01coverity#738544 Uninitialized scalar variableCaolán McNamara
Change-Id: Idbf32e20ce81e6b726f32183c6f5e1bf0657b5ba
2014-04-01coverity#707886 Uninitialized scalar fieldCaolán McNamara
Change-Id: Iefcdcf992f5e25643030ab94e64bd06f9fe7c7e7
2014-04-01coverity#707881 Uninitialized scalar fieldCaolán McNamara
Change-Id: I709bb47bc2cf083805cd8b058b94a763af2ab7ee
2014-03-31callcatcher: update unused codeCaolán McNamara
Change-Id: I9d8601eb66a460702530e013bf573c6482c49c0b
2014-03-30coverity#1194897 Logically dead codeCaolán McNamara
Change-Id: I4cf8d63822c4a68b7cdc126a8d76c1ce7b064655
2014-03-29typo: opend -> openedThomas Arnhold
2014-03-27framework: sal_Bool->boolNoel Grandin
Change-Id: If3276f184c63e85762fe54ce19655c30e00aeb15
2014-03-26Work around MSC "'override' cannot be used with 'inline'" bugStephan Bergmann
Change-Id: I35170712b8f0c83ab35cb5ef7115a6dc434a7a4f
2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
2014-03-25coverity#1187652 Dead default in switchCaolán McNamara
Change-Id: Ieedec800955c0785b73caf52ff242b54246b653f
2014-03-22coverity#707872 Uninitialized scalar fieldCaolán McNamara
Change-Id: I1dda581122caff16ab6d00a5f241d032cd021499
2014-03-22coverity#738659 Uninitialized pointer fieldCaolán McNamara
Change-Id: I5d3ebc066f36f9cdcfb031a58ecb9c64ddea26c3
2014-03-20Remove newly unused framework::LockHelper classStephan Bergmann
...and make LockHelper::getGlobalLock() FWI_DLLPUBLIC again (so there's a single such lock, not one per library). Change-Id: I0aed77333dc93cdf1c7dd7b96620fb7a8eb3dd64
2014-03-20Remove newly unused framework::GuardStephan Bergmann
Change-Id: I49650bfd036c5df22f81c3e8cf30bc0795154a30
2014-03-20Remove unused function declarationStephan Bergmann
Change-Id: I82ac945e5d1fba82047a7902782893d01eda34e3
2014-03-20Turn odd framework::LockHelper::getGlobalLock() into an osl::MutexStephan Bergmann
...and extract it to framework::GlobalLock::get(). The old lock was actually effectively two different locks, LockHelper::getGloblaLock() and LockHelper::getGlobalLock().getShareableOslMutex(), and both were used in different places. These places all use the same single osl::Mutex instance now, but hopefully that does not lead to problems (which it shouldn't, given the documentation of LockHelper::getShareableOslMutex: "Sometimes we need a osl- mutex for sharing with our uno helper ... What can we do? We must use a different mutex member :-( I HOPE IT WORKS!"). Of course, the "TODO: This presumable should return the SolarMutex" still applies. Change-Id: I7caea3241d1b70a00272fe1f2214c071ef22cf2c
2014-03-20Remove newly unused framework::ThreadHelpBaseStephan Bergmann
Change-Id: I75e7cfc8aa1f4e4e50a2e21c5f7596363594e179
2014-03-20Use an osl::Mutex directlyStephan Bergmann
Change-Id: If8ff4fc256e530f6b79cc97cf1f47880c93864bf
2014-03-20Remove unused ThreadHelpBase baseStephan Bergmann
Change-Id: I8ab2c53566c9e62a1e03bc6010e2e13413be2c5f
2014-03-20Remove unused ThreadHelpBase baseStephan Bergmann
Change-Id: Ia60e0af495b2141b7ea2e906d94c15c55865eea2
2014-03-20Remove dead codeStephan Bergmann
Change-Id: Ib148ca5cb8fce0a4d4b15fbb16d6f008dd62671f
2014-03-20Remove unused includesStephan Bergmann
Change-Id: Ia3b3ce4e9e3504e3b9e4a623879893755dcd1ba9
2014-03-20Remove unused ThreadHelpBase baseStephan Bergmann
Change-Id: Id08d2c937a5d41c74852bb14ac726d87853dfc7e
2014-03-20Access safe members directlyStephan Bergmann
Change-Id: Ie76f2219c5bce609a23a0bc70d6da43f527ce12d
2014-03-20Use an osl::Mutex directlyStephan Bergmann
Change-Id: I4adad36de95c022a7945b61a44bb6166ad87a8a7
2014-03-20Use an osl::Mutex directlyStephan Bergmann
Change-Id: I37264f25b5ad89f72d25f78808ff796f581536c4
2014-03-20Use an osl::Mutex directlyStephan Bergmann
Change-Id: I2ec909c81faabd896310b29b0d7149b0f7744b35
2014-03-20Access safe members directlyStephan Bergmann
Change-Id: Ib1195f4704de845448e280fabbe40580de46a97d
2014-03-20Use an osl::Mutex directlyStephan Bergmann
Change-Id: Icb655df89fcb3c9dac0f25d0fdb5383d24914877
2014-03-20Access safe members directlyStephan Bergmann
Change-Id: I184f6450dc436b37fefe6c6ca35f61296ec10dd6
2014-03-20Use an osl::Mutex directlyStephan Bergmann
Change-Id: I4f483efd13c099348f06094573c499858a8431ba