summaryrefslogtreecommitdiff
path: root/sfx2
AgeCommit message (Collapse)Author
2012-04-16String->rtl::OUStringCaolán McNamara
2012-04-15re-open output file on save to fsync to improve first-start performanceMichael Meeks
2012-04-14Resolves: fdo#48640 handle various busted rtf docs without hangingCaolán McNamara
2012-04-12removed dead codeTakeshi Abe
2012-04-12removed useless static dataTakeshi Abe
2012-04-12removed unused definesTakeshi Abe
2012-04-10fix tinderboxCaolán McNamara
2012-04-10Resolves: fdo#31022 about dialog is suboptimalAndrew Higginson
2012-04-10char[] -> const char[].Jan Holesovsky
2012-04-10removed unused definesTakeshi Abe
2012-04-10removed OS/2 oneTakeshi Abe
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/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-05SfxViewShell::GetScrollingMode always returns SCROLLING_DEFAULTIvan Timofeev
2012-04-05fdo#43895 lp#905355: fix the fix so it doesn't crashMichael Stahl
rtl::OUString rtl::OUString::copy(sal_Int32) const: Assertion `beginIndex >= 0 && beginIndex <= getLength()' failed. (regression from dd2fe95cce75f1157bd1c75d286a0047b2e4175e)
2012-04-05removed unused definesTakeshi Abe
2012-04-03fdo#44698 settings are under a different menu in Mac OS XAndras Timar
2012-04-02fdo#34324 - fix colorspace conversion for greyscale bitmapsMichael Meeks
2012-04-02Remove unused HTMLMODE_FIRSTLINEHarri Pitkänen
HTMLMODE_FIRSTLINE was disabled in all HTML export modes. It seems to have been used to add first line indent for paragraphs in Netscape version 3 but all currently available export modes use CSS for that.
2012-03-30Correct method name in warning messageTor Lillqvist
2012-03-30removed duplicate includes in sfx2Takeshi Abe
2012-03-30remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara
2012-03-29add for calc extra paste ctx menu with options to paste text or formula onlyNoel Power
2012-03-27fdo#43895 lp#905355: Never let users save in /tmp by defaultAndrzej J. R. Hunt
2012-03-23.mm files don't need executable bitsMichael Stahl
2012-03-23.rdf files don't need executable bitsMichael Stahl
2012-03-23.sdw files don't need executable bitsMichael Stahl
2012-03-23README files don't need executable bitsMichael Stahl
2012-03-23.stw files don't need executable bitsMichael Stahl
2012-03-23.sdi 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.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-23we dont' need any SvCompatWeakBase use in SfxMedium AKAICSCaolán McNamara
2012-03-23overly static lingering OUStringsCaolán McNamara
2012-03-22don't need to check for null before deleteMarkus Mohrhard
2012-03-21chmod -xTor Lillqvist
2012-03-20remove extra string castsCaolán McNamara
2012-03-20split macros to elide unneeded methodsCaolán McNamara
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.