summaryrefslogtreecommitdiff
path: root/framework
AgeCommit message (Collapse)AuthorFilesLines
2012-03-28remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara1-8/+10
2012-03-28remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara1-6/+6
2012-03-28drop unused global rtl::OUStringsCaolán McNamara1-2/+0
2012-03-26ditch some UniStrings and intermediate temporariesCaolán McNamara1-2/+2
2012-03-26reduce over use of static OUStringsCaolán McNamara3-35/+25
2012-03-23.dtd files don't need executable bitsMichael Stahl7-0/+0
2012-03-23.xcl files don't need executable bitsMichael Stahl1-0/+0
2012-03-23.sce files don't need executable bitsMichael Stahl3-0/+0
2012-03-23.component files don't need executable bitsMichael Stahl4-0/+0
2012-03-23.gif files don't need executable bitsMichael Stahl1-0/+0
2012-03-23.hrc files don't need executable bitsMichael Stahl2-0/+0
2012-03-23.h files don't need executable bitsMichael Stahl4-0/+0
2012-03-23.java files don't need executable bitsMichael Stahl35-0/+0
2012-03-23overly static lingering OUStringsCaolán McNamara2-19/+19
2012-03-22annoying PATHES->PATHS typosCaolán McNamara2-32/+26
2012-03-21chmod -xTor Lillqvist1-0/+0
2012-03-20split macros to elide unneeded methodsCaolán McNamara3-5/+9
2012-03-16Some include and comment clean upStephan Bergmann1-2/+0
2012-03-16Introduced SystemShellExecuteFlags::URIS_ONLYStephan Bergmann3-3/+3
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann12-1/+35
...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-12replace usage of OUString::replace*AsciiL() with string literal overloadsLuboš Luňák1-2/+1
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan6-14/+14
2012-03-06remove pointless calculationsAndras Timar1-16/+3
2012-03-06Added option to hide external link buttons on Start CenterSzabolcs Dezsi4-109/+20
This option is useful for Intel AppUp builds. On the other hand, unused STARTCENTER_LAYOUT_STYLE option was removed.
2012-03-05attempt fix of hang on base close, due to solarmutex deadlock on joinMichael Meeks2-2/+10
2012-03-05add a spaceBjoern Michaelsen1-1/+1
2012-03-05lp#562027: actually give the quickstart suppressor a scopeBjoern Michaelsen1-1/+1
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann21-59/+59
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-03-01do not include external stuff into namespaceDavid Tardon1-5/+15
2012-02-29Bin obviously bogus (Thanks, Clang!) but fortunately unused functionTor Lillqvist1-14/+0
2012-02-29Drop comparison with empty rtl::OUStringTakeshi Abe1-2/+2
2012-02-28lp#562027: fix logout with quickstarterBjoern Michaelsen3-1/+48
2012-02-28some fancy new SAL_LOG tracing for frameworkBjoern Michaelsen1-0/+12
2012-02-23Remove unused code as listed in unusedcode.easySantiago Martinez2-14/+0
2012-02-21WaE: duplicateBranchThomas Arnhold1-2/+0
2012-02-21WaE: duplicateBranchThomas Arnhold1-2/+0
2012-02-21WaE: duplicateBranchThomas Arnhold1-4/+0
2012-02-21expand and remove css_ui macroThomas Arnhold1-10/+7
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann2-2/+2
2012-02-20WaE: unused variablesCaolán McNamara2-77/+101
2012-02-19Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe4-33/+61
to equalsIgnoreAsciiCaseAscii("...")
2012-02-18Revert "offapi: remove obsolete XInplaceLayout"Thomas Arnhold2-0/+20
This reverts commit 5ca858c01cb2e2aa93c8aca65fd271a900785e3f. This change implicates some more changes in layoutmanager.hxx see ::cppu::WeakImplHelper8. So keep it...
2012-02-18offapi: remove obsolete XInplaceLayoutThomas Arnhold2-20/+0
2012-02-18framework: remove unused timemeasure.hxxThomas Arnhold2-151/+0
2012-02-16Typo fix: com.sum -> com.sunTor Lillqvist2-2/+2
2012-02-16Use RTL_CONSTASCII_STRINGPARAM instead of bare numberTakeshi Abe2-2/+2
2012-02-15Various string function clean upStephan Bergmann1-4/+4
Added: * rtl::OString::matchL * rtl::OString::endsWith * rtl::OString::endsWithL * rtl::OString::indexOfL * rtl::OString::replaceFirst * rtl::OString::replaceAll * rtl::OString::getToken * rtl::OUString::endsWith * rtl::OUString::replaceFirst * rtl::OUString::replaceFirstAsciiL * rtl::OUString::replaceFirstAsciiLAsciiL * rtl::OUString::replaceAll * rtl::OUString::replaceAllAsciiL * rtl::OUString::replaceAllAsciiLAsciiL * rtl::OUString::getToken plus underlying C functions where necessary Deprecated: * comphelper::string::remove * comphelper::string::getToken Removed: * comphelper::string::searchAndReplaceAsciiL * comphelper::string::searchAndReplaceAllAsciiWithAscii * comphelper::string::searchAndReplaceAsciiI * comphelper::string::replace * comphelper::string::matchL * comphelper::string::matchIgnoreAsciiCaseL * comphelper::string::indexOfL Also fixed some apparent misuses of RTL_CONSTASCII_USTRINGPARAM -> RTL_CONSTASCII_STRINGPARAM.
2012-02-13Fix typos in commentsElton Chung3-3/+3
2012-02-10fdo#39491 remove nonexistent include pathsMatúš Kukan5-5/+0
2012-02-10fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan6-7/+0