summaryrefslogtreecommitdiff
path: root/sfx2
AgeCommit message (Collapse)Author
2011-11-04WaE: calm down windows shutdownicon warningMichael Meeks
2011-11-04Removed spurious junk left over in previous commit.Stephan Bergmann
2011-11-04Further clean up of areas touched by previous commit.Stephan Bergmann
2011-11-04String->OUString, remove unused codeAugust Sodora
2011-11-02Merge branch 'master' of git://anongit.freedesktop.org/libreoffice/coreMichael Stahl
2011-11-01impl_loadBitmap is now dangling unusedCaolán McNamara
2011-11-01eliminate SvUShorts typeDaniel Di Marco
2011-11-01WaE: various sillies flagged by MSVC++Michael Meeks
2011-11-01catch by const refCaolán McNamara
2011-11-01ByteString->rtl::OStringCaolán McNamara
2011-10-31rhbz#657394: crash closing document while printingMichael Stahl
- XRenderable implementation in SwXTextDocument and ScModelObj throw DisposedExceptions instead of RuntimeExceptions - SfxPrinterController catches DisposedException and aborts printing - vcl::PrinterController checks that the printing was not aborted
2011-10-28remove pointless SfxBaseModel::setDocumentProperties()Michael Stahl
2011-10-28SfxBaseModel impl_setDocumentProperties to impl classMichael Stahl
2011-10-28remove dangling objmnctl.cxxCaolán McNamara
2011-10-28Export blinking text attribute to HTML in all HTML export modesHarri Pitkänen
Previously blinking was not exported in IE mode. IE still does not support blinking (neither does Chrome or Safari) but the extra tag does not make things any worse and allows importing the HTML back to LibreOffice without loss of formatting. Code is also simplified by removing conditionals for options that no longer need to be disabled.
2011-10-27include mnuitem.hxx to build with --enable-dbgutilCaolán McNamara
2011-10-27remove unused SfxObjectVerbsControl classNorbert Thiebaud
2011-10-18CMIS: Fixed the smoketests failure by catching some exceptionsMichael Stahl
2011-10-18Reapply "CMIS: use another name to show than the one extracted from the base URLCédric Bosdonnat
This reverts commit 4901bdf4c4971e9b8235ab9bfbd0ee1088d51b45.
2011-10-17Revert "CMIS: use another name to show than the one extracted from the base URL"Luboš Luňák
The commit makes LO unusable, it fails during startup, smoketest fails as well. This reverts commit cd1a12dc552e9d34c7481c83b07a6f6af0e8762b.
2011-10-17CMIS: use another name to show than the one extracted from the base URLCédric Bosdonnat
In CMIS, the URL is only providing an easy access to the CMIS interface and doesn't reflect the public path on the server. A new property has been added in the SfxMedium items to hold the document name on the server and set it as the window title.
2011-10-08Second attempt at (cross-platform) OSL_FORMAT.Stephan Bergmann
2011-10-08Revert "Introduced OSL_FORMAT, adpated some places to it."Tor Lillqvist
Breaks the MSVC build for me: 'osl_detail_formatString' : C linkage function cannot return C++ class 'rtl::OString'. This reverts commit 6b900b8bede24c8710d62e9e7cbff613a0b12f9f.
2011-10-08Introduced OSL_FORMAT, adpated some places to it.Stephan Bergmann
2011-10-07cppcheck reduce scope of var in sfx2/... dinfdlg.cxxPierre-André Jacquod
2011-10-06WaE: class has virtual functions, but destructor is not virtualTor Lillqvist
2011-10-06WaE: class has virtual functions, but destructor is not virtualTor Lillqvist
2011-10-06WaE: class has virtual functions, but destructor is not virtualTor Lillqvist
2011-10-06WaE: unreachable codeTor Lillqvist
2011-10-05simplfy dmake to gbuild bridgefileBjoern Michaelsen
2011-10-03callcatcher: update listCaolán McNamara
2011-10-02callcatcher: various unused methodsCaolán McNamara
2011-09-30add mode-lines to .m files and last round of merged files, etc.Caolán McNamara
2011-09-30removed unused macroTakeshi Abe
2011-09-29fix trunk gcc compile errorsMatúš Kukan
2011-09-29Replace SvULongs with std::vector in sfx2Maciej Rumianowski
Bug 38831, replace SvULongs with std::vector in sfx2 and related svtools
2011-09-29This was what I meant, sorry for thinkoTor Lillqvist
2011-09-28Add mode lines and detabifyTor Lillqvist
2011-09-28WaE: class 'RecentMenuDelegate' does not implement the 'NSMenuDelegate' protocolTor Lillqvist
2011-09-28Mark SfxStandaloneDocumentInfoObject as SAL_DLLPRIVATETor Lillqvist
Fixes warnings 'SfxStandaloneDocumentInfoObject' declared with greater visibility than the type of its field 'SfxStandaloneDocumentInfoObject::<anonymous>' and 'SfxStandaloneDocumentInfoObject' declared with greater visibility than its base 'SfxDocumentInfoO\ bject'.
2011-09-27Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann
2011-09-27ByteString->rtl::OStringBufferCaolán McNamara
2011-09-26ByteString->rtl::OStringBufferCaolán McNamara
2011-09-22just silence the auto_ptr deprecations in isolationCaolán McNamara
2011-09-22Always link with user32Tor Lillqvist
2011-09-22Fix of localized template name problems in Impress part 2Peter Rabi
Template entries now appear in the correct word order in their representation in SfxDocumentTemplates. That makes template listboxes in a few dialogs work as expected. Contributed under license LGPLv3+/MPL.
2011-09-21OSL_TRACE: Remove trailing newlinesThomas Arnhold
Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines
2011-09-19ByteString->rtl::OStringBufferCaolán McNamara
2011-09-19rework this in terms of read_uInt8s_AsOStringCaolán McNamara
2011-09-17When pasting from other apps, fall back on Fragment span.Kohei Yoshida
We need to handle fragment span in case the HTML span is not provided by the source application. According to the MS spec it is allowed. The old code assumed that the source app would always provide an HTML span. Apparently some apps don't, and only provides a fragment span.