summaryrefslogtreecommitdiff
path: root/sfx2/source/doc
AgeCommit message (Collapse)AuthorFilesLines
2012-04-16String->rtl::OUStringCaolán McNamara2-8/+9
2012-04-15re-open output file on save to fsync to improve first-start performanceMichael Meeks1-1/+12
2012-04-14Resolves: fdo#48640 handle various busted rtf docs without hangingCaolán McNamara1-1/+1
2012-04-12removed unused definesTakeshi Abe1-10/+0
2012-04-10fix tinderboxCaolán McNamara1-1/+1
2012-04-10Resolves: fdo#31022 about dialog is suboptimalAndrew Higginson1-10/+18
2012-04-10char[] -> const char[].Jan Holesovsky1-9/+4
2012-04-10removed unused definesTakeshi Abe5-9/+0
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi3-7/+5
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi7-36/+24
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi1-4/+4
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 Dezsi2-22/+22
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 Dezsi5-16/+16
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-05removed unused definesTakeshi Abe1-2/+0
2012-04-03fdo#44698 settings are under a different menu in Mac OS XAndras Timar1-0/+4
2012-03-30removed duplicate includes in sfx2Takeshi Abe7-9/+0
2012-03-30remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara1-32/+44
2012-03-23.hrc files don't need executable bitsMichael Stahl4-0/+0
2012-03-23we dont' need any SvCompatWeakBase use in SfxMedium AKAICSCaolán McNamara1-9/+2
2012-03-20remove extra string castsCaolán McNamara1-3/+3
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann1-0/+2
...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-07remove various unused methods and source filesCaolán McNamara1-11/+0
2012-03-05WaE: unused parameter in the DISABLE_SCRIPTING caseTor Lillqvist1-1/+3
2012-03-05Sprinkle DISABLE_SCRIPTING ifdefsTor Lillqvist4-4/+75
2012-03-03ExecuteQuerySaveDocument: return NO when headless instead of CANCELMichael Stahl1-0/+5
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann3-16/+16
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-02-27fdo#46678: tweak SfxBaseModel::getSomething:Michael Stahl1-7/+13
Lock the SolarMutex only when necessary. This is a workaround that just happens to make the deadlock go away for me. This being called from pyuno is wasteful anyway, but apparently there is no way to determine whether a uno::Reference points at something local to the process.
2012-02-22SfxNewFileDialog_Impl: drop unneeded includesMiklos Vajna1-12/+0
2012-02-18Fix typos in commentsElton Chung3-9/+9
2012-02-17remove extraneous qualifiers that break some compilersMariusz Dykierek1-1/+1
2012-02-14fdo#37775: Recent Documents not updated by Save & Save AsMuhammad Haggag3-6/+0
This patch changes LO behavior so that we update recent documents on file save, save as, save all, and close. The previous behavior was to only update the list on document close. = Changes = SfxPickList (sfxpicklist.cxx/hxx): . Extracted the logic to add a document to the "Recent Documents" list into a function of its own: AddDocumentToPickList - Simplified the logic used by removing the check of SfxObjectShell_impl::bWaitingForPickList (see SfxObjectShell_impl::bWaitingForPickList below for details) . Modified SfxPickList::Notify to call the aforementioned function on save, save-to, and save-as. SfxObjectShell::APISaveAs_Impl (objserv.cxx): . Modified it to allow picklist entry when doing "Save As". SfxObjectShell_impl::bWaitingForPickList (objstor.cxx, objxtor.cxx, objshimp.hxx): . Removed this flag. It was used to indicate that a document wants to be added to the picklist, then cleared after it's added. Since we now always add documents to the picklist on saving, we no longer need it. = Verification = The change is in sfx2, so it should apply to all LO apps. I verified the new behavior in both writer and calc with the following actions: . File->Save . File->Save As . File->Save All . File->Close
2012-02-10Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("...")) to equalsAscii("...")Takeshi Abe1-1/+1
2012-02-05Remove unused codeElton Chung3-55/+0
2012-02-01callcatcher: update listCaolán McNamara1-12/+0
2012-01-31Simplify code by making getProcessComponentContext() implicit.Stephan Bergmann1-1/+1
2012-01-17Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz4-17/+21
2012-01-16Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz4-17/+17
2012-01-16e the new way to access the configMarkus Mohrhard1-21/+2
2012-01-15don't create lock files for unit testsMarkus Mohrhard1-0/+30
special thanks to Stephan for the configuration part
2012-01-12SvStringsDtor->std::vectorAugust Sodora1-17/+12
2012-01-11SvStringsDtor->std::vectorAugust Sodora1-29/+10
2012-01-11Hide bogus "Untitled already exists" errors...Stephan Bergmann1-1/+2
...when adding multiple new template regions in a row in SfxOrganizeDlg_Impl.
2012-01-11fdo#43532 Partial revert of "...template names appear... correct word order"Stephan Bergmann4-143/+75
Sorting the sfx2-based list boxes does not work as SfxDocumentTemplates uses a different collating order (plain Unicode code points) than the list boxes, so that e.g. "en-US" comes last in SfxDocumentTemplates but not in the list boxes. Even with that fixed, insertions into SfxOrganizeDlg_Impl would still not work right. This reverts the sfx2 parts of commits 50b7733fa41879a62d35cab64da59b109e1a8502 and df59068902b294b7b344af0c20da196cc64aaced.
2012-01-10Remove _SVSTDARR_STRINGSISORTDTORAugust Sodora3-6/+0
2012-01-10Fix for fdo43460 Part XXXIII getLength() to isEmpty()Olivier Hallot18-175/+175
Part XXXIII Modules sfx2
2012-01-10simplify LocalFileHelper::ConvertURLToPhysicalNameCaolán McNamara5-27/+28
2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz1-1/+0
2012-01-05getPropertyMap can return a reference instead of a pointerCaolán McNamara2-2/+2
2012-01-05Removed unnecessary tools includes.Marcel Metz2-2/+0
2012-01-05Removed unnecessary tools includes.Marcel Metz1-1/+0