summaryrefslogtreecommitdiff
path: root/framework
AgeCommit message (Collapse)Author
2012-04-21Replace css macro with namespace for nicer namespacingThomas Arnhold
2012-04-14Simplify the construction of the '>>' menu.Jan Holesovsky
2012-04-12fdo#34392 recompute column widths after font scale change in startcenterGábor Stefanik
2012-04-12offapi: remove obsolete XInplaceLayout (2nd try)Thomas Arnhold
This is related to 10e580c57b907420e8c6d816325445a40a720e4a
2012-04-11Bin pointless "added by shizhoubo" style commentsTor Lillqvist
2012-04-11fdo#38276: Improve the ">>" toolbar overflow menuIain Billett
2012-04-09s/pathes/paths/Tor Lillqvist
2012-04-09s/pathes/paths/Tor Lillqvist
2012-04-09add package deps for resourcesDavid Tardon
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi
2012-04-08LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl
2012-04-08gbuild: "use" vs. "add":Michael Stahl
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \;
2012-04-05Fix Prefer prefix ++/-- operatorsJulien Nabet
Includes too replacement < by != for comparison between current and end iterators
2012-04-04remove an assert from an attempt to silence clang's false warningLuboš Luňák
http://llvm.org/bugs/show_bug.cgi?id=12459 It is not clear to me why the explicit cast was there in the first place, but removing it probably can't make the situation worse than aborting incorrectly.
2012-04-04WaE: call to pure virtual member functionTor Lillqvist
2012-04-03fix the initial font size in the Start CenterIvan Timofeev
Recover the code that was for some reason removed in commit 78e8d5f0d62f910b8561a1c4fd7ebd8ae4cfb9f8.
2012-04-02remove static objects from static_initialization_and_destruction chainCaolán McNamara
2012-04-02remove static objects from static_initialization_and_destruction chainCaolán McNamara
2012-03-30remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara
2012-03-29remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara
2012-03-28remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara
2012-03-28remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara
2012-03-28drop unused global rtl::OUStringsCaolán McNamara
2012-03-26ditch some UniStrings and intermediate temporariesCaolán McNamara
2012-03-26reduce over use of static OUStringsCaolán McNamara
2012-03-23.dtd files don't need executable bitsMichael Stahl
2012-03-23.xcl files don't need executable bitsMichael Stahl
2012-03-23.sce files don't need executable bitsMichael Stahl
2012-03-23.component files don't need executable bitsMichael Stahl
2012-03-23.gif files don't need executable bitsMichael Stahl
2012-03-23.hrc files don't need executable bitsMichael Stahl
2012-03-23.h files don't need executable bitsMichael Stahl
2012-03-23.java files don't need executable bitsMichael Stahl
2012-03-23overly static lingering OUStringsCaolán McNamara
2012-03-22annoying PATHES->PATHS typosCaolán McNamara
2012-03-21chmod -xTor Lillqvist
2012-03-20split macros to elide unneeded methodsCaolán McNamara
2012-03-16Some include and comment clean upStephan Bergmann
2012-03-16Introduced SystemShellExecuteFlags::URIS_ONLYStephan Bergmann
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-12replace usage of OUString::replace*AsciiL() with string literal overloadsLuboš Luňák
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan
2012-03-06remove pointless calculationsAndras Timar
2012-03-06Added option to hide external link buttons on Start CenterSzabolcs Dezsi
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 Meeks
2012-03-05add a spaceBjoern Michaelsen