summaryrefslogtreecommitdiff
path: root/sfx2
AgeCommit message (Collapse)AuthorFilesLines
2012-09-19ComponentContext::getUnoContext -> getComponentContext simplificationStephan Bergmann10-22/+16
...and some further clean-up. Change-Id: If5dce53e382b56390c502d0d0d93fc06cbfe33ea
2012-09-18deprecate oustringostreaminserter.hxxNorbert Thiebaud4-4/+1
the intent of this header has canged over time. now it is already systematically included with ustring.hxx and the operator overload it provide fit nicely there... Just to be safe, since that include as been added to the api during the 3.5 timeframe and therefore is already in 'production' the header remain and simply attempt to include ustring.hxx but a warning is issued indicating that this header should not be used anymore... in a couple of major release we will thenr emove it completely All internal users of that header are converted. Change-Id: I8934c55f089e29d78c0f5649b7c87b2ecf024bad Reviewed-on: https://gerrit.libreoffice.org/634 Tested-by: Norbert Thiebaud <nthiebaud@gmail.com> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
2012-09-18Adapt Windows-only code to changed ucbhelper::ContentStephan Bergmann1-1/+2
Change-Id: I1ed4a59b7eef5f841754bc616ad94cbd82227ad0
2012-09-14sfx2: DocumentInfo test should use a private temp dirMichael Stahl1-23/+8
At least it failed on me once trying to store to its temp file, maybe the predictable file name was the problem... Change-Id: I78918ada1615c8337e4c8692d34aa285010bc820
2012-09-14Improvement on previous commit, UCB clean upStephan Bergmann13-84/+89
* As UCB is only ever initialized with "Local"/"Office", remove this configuration vector completely. The "create" ctor creates an instance internally initialized with those "Local"/"Office" keys. Special (test) code can still instantiate an uninitialized one via plain createInstance. And for backwards compatilibity process startup still ensures to create an initialized instance early, in case there is still code out there (in extensions) that later calls plain createInstance and expects to get the already-initialized (single) instance. * XInitialization is an "implementation detail" of the UniversalContentBroker service, do not expose in XUniversalContentBroker. * ucbhelper/configurationkeys.hxx is no longer needed and is removed. * ucbhelper/contentbroker.hxx is an empty wrapper and is removed; however, that requires ucbhelper::Content constructors to take explicit XComponentContext arguments now. * The only remaining code in ucbhelper/source/client/contentbroker.cxx is Android-only InitUCBHelper. Is that relevant still? Change-Id: I3f7bddd0456bffbcd13590c66d9011915c760f28
2012-09-12Unused #includesStephan Bergmann1-1/+0
Change-Id: If5c8ee05ef84c03a9cec6ef428256e17b33f073e
2012-09-12targetted VBA re-work.Noel Power4-60/+13
2012-09-11missing part of fix for fdo#54721Noel Power1-1/+1
commit id cea414bfe8fe356793778bdf09f5ca3b3a42daa0 for "fix vba not tracking currently selected doc correctly" was missing necessary change in sfx2 Change-Id: I1697c005374b3d26dc63c78702a46c6d9879adaa
2012-09-07Make it more generic.Kohei Yoshida1-5/+7
Change-Id: I3d3ddec1a8313bb58f5ae6bbc3edc1f273e25f94
2012-09-07I'll agree with the comment, and remove this line.Kohei Yoshida1-6/+0
Change-Id: Ieff30d8df8128488910b75603d2499102b529c3b
2012-09-07First cut on integrating liborcus into libreoffice tree....Kohei Yoshida4-4/+45
It introduces the 'FilterProvider' property in the media descriptor to optionally bypass the normal loading process and let the external filter provider to handle the loading. For now I'm overwriting the csv import filter just to see how this could work just as an experiment. Orcus still needs a lot of work, and it crashes very often at the moment. Change-Id: I11b34572c71073144804a7d0dd5176c8067d8deb
2012-09-06Java cleanup, remove unnecessary importsNoel Grandin1-6/+0
Change-Id: Iacfcb2e16cb0e3c25a4cd0678a374fe5111284f7
2012-09-06offapi: move css.ui.UICommandDescription to css.frame.UICommandDescription:Michael Stahl3-6/+8
The service implementation used "com.sun.star.frame.UICommandDescription" since forever, so the IDL file was essentially wrong documentation. But since 7a464263cc5c2ca2b7128734ff4860e02d662818 converted the service to new-style, it cannot be instantated any more and e.g. clicking on Tools->Customize crashes. (Adapting the implementation instead would be an incompatible change.) Change-Id: I564bddaf3836827f5b72360a2bde19d6158b7ba5
2012-09-05remove some obsolete boilerplate Test.javaMichael Stahl2-50/+1
Change-Id: I694cff583fddb713a59e5d6b8e15ea06a2be63b6
2012-09-05Java cleanup, make package name match folder nameNoel Grandin2-2/+2
Change-Id: I4229ea7a4ad4d669db824e14ee6a8acb2ac205a0
2012-09-05Some clean up of previous commitStephan Bergmann14-95/+55
Change-Id: I14097acf09e9663af7d7abc5f0c9d481880ecc51
2012-09-05fdo#46808, Adapt frame::ModuleManager UNO service to new styleNoel Grandin12-70/+48
Create a merged XModuleManager2 interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Explicitly document the XNameReplace interface in the IDL, which is already implemented by the service, since there is code currently using it. Change-Id: Ib46349174b1ce495c240031e93c9427fc33d9853
2012-09-04Some clean up of previous commitStephan Bergmann2-2/+2
Change-Id: I0ea6d6439f97fcf74162c19671483aaa17b5a6cb
2012-09-04fdo#46808, Adapt DocumentDigitalSignatures UNO service to new styleNoel Grandin6-139/+116
Rename service from "Decryptor" to "DocumentDigitalSignatures" to be consistent with the other UNO services, and with it's own header file name. Add service constructor for passing in arguments. Change-Id: Iaca0c40bb2f1a1af2ef9ca29361bfd023ade2678
2012-09-03More places that require a prefixed "system"Stephan Bergmann1-3/+3
Change-Id: I49cf1f02faf70a5a92ab45e7678253ba4e5f68d0
2012-09-03fdo#46808, Adapt system::SystemShellExecute UNO service to new styleNoel Grandin3-22/+13
Change-Id: Ib298b3219c3e89dd35bce0974846ed4888ed941e
2012-09-03fdo#46808, Adapt xml::dom::DocumentBuilder UNO service to new styleNoel Grandin1-13/+4
Change-Id: I577fbc7f990be9ec1f7b7eea53218b7daaccb2a1
2012-09-03fdo#46808, Adapt UICommandDescription UNO service to new styleNoel Grandin3-16/+12
Change-Id: Ibca112904f137ff981ae9be3e5bd56aa11aec352
2012-09-03fdo#46808, Adapt ModuleUIConfigurationManagerSupplier UNO service to new styleNoel Grandin1-6/+3
Change-Id: I58b17349474b974edd24aa17ec08ffa848a92ae9
2012-08-30Do the same thing for gio as we do for dbusCaolán McNamara1-0/+1
and add -DENABLE_GIO to flags at build-time and an empty gb_LinkTarget__use_gio when disabled. Change-Id: I4adf0701a3d490cceecc00f6b81d6416a1e83088
2012-08-29Unused declarationsStephan Bergmann1-2/+0
Change-Id: Iec879819cb328bade35de8a946f38a419fa8737a
2012-08-27fdo#46808, Adapt TempFile UNO service to new styleNoel Grandin1-1/+2
Change-Id: Ia448d6d74201e2be487c6d8317f94be3745808aa
2012-08-27fdo#46808, Adapt script::Converter service code to new styleNoel Grandin1-5/+3
Change-Id: I19b3ba7c978e02ce865360f0411007525012149c
2012-08-27fdo#46808, Adapt document::DocumentProperties UNO service to new styleNoel Grandin3-11/+9
Change-Id: I19015d3e3e9aa6e4b3b4bb011183c73ab00365ca
2012-08-27fdo#46808, Use factory methods for frame::DispatchHelper instancesNoel Grandin1-31/+25
Change-Id: I7bdf16fc6d042e5ecd404c604a8b7c31c1ac7bc1
2012-08-27Modified the wording of the Save-on-Exit-DialogSamuel Mehrbrodt3-2/+8
Change-Id: Ie3a02efc4541754ba553909ad03a115258890351 Reviewed-on: https://gerrit.libreoffice.org/491 Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com> Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
2012-08-27Remove remaining checks for HTMLMODE_SOME_ABS_POSHarri Pitkänen1-1/+0
This HTML mode is never disabled for any HTML export options. Thus it is not necessary to check for it. Completes the cleanup started in commit feeb57e0a63cdcd81898050d059e7933f62c5292 Change-Id: I3ea27ea52cdc355f19d0d2fb33ac92262df5d13f Reviewed-on: https://gerrit.libreoffice.org/488 Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com> Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
2012-08-24ThumbnailView: memory leakIvan Timofeev1-0/+1
Change-Id: I652ec6bf0309f56d4d2bc1ff7b0fb2b8173de6be
2012-08-23Fix rendering subtitle for template search results.Rafael Dominguez1-1/+1
Change-Id: I1d1a5100bdbd2be238d045df3c7790dde8afd63f
2012-08-23rtl::OUString -> OUStringRafael Dominguez12-53/+53
Change-Id: Id435edc2d2f8801bde4be6e4acbe42608e0be179
2012-08-23Rename class from TemplateOnlineView to TemplateRemoteView.Rafael Dominguez8-48/+48
Change-Id: I3d1cc00274c4f758cb4e8e6a09cea9cb63b0a733
2012-08-23Remove ViewShell's border.Jan Holesovsky1-1/+1
It is not necessary now; where it was necessary previously, we visually distinguish the viewshell from the rest by other means. Change-Id: I24f3ed1916c0886683bf8b770ce3bf22a5e9ec7a
2012-08-23Revert the TOPBOTTOM border window type, this needs another approach.Jan Holesovsky1-1/+0
This reverts commit 51fdf273e9893d3d05c99a09e1c2e5835a78e891. In order to be able to draw the toolbars docked on the left or on the right nicely and reliably, we have to avoid any border in the shell; instead, the docking areas will draw the separating lines (when finished). Change-Id: I74c18a7e471a66ac0a436c2bf01f5be016280d22
2012-08-23Some clean up after previous commitStephan Bergmann1-4/+7
Change-Id: Ie419c769c5d661d51c1b43b9808791dcf9e1725c
2012-08-22fdo#52451: Some name changes to be consistent with other prop names.Kohei Yoshida1-1/+2
We use IMPORT EXPORT flags, so let's stick with the term 'Export' as opposed to 'FileSave'. Also, the file type's extensions are given without the star-dot (*.), so let's strip that as well. Change-Id: Ibde05058f7acb6ae149382009e78f3f10a71d543
2012-08-21fdo#52451: Ensure that the extension for text is .txt from writer.Kohei Yoshida1-3/+12
Added a preferred extension property to the filter which overwrites one(s) given by the default file format type associated with it. Normally this property is not used for the majority of the filters, but for plain text filters, we need to use .txt when saving from writer whereas we do .csv from calc. Change-Id: I3453ad084e4379e5cc1101daeb9d2c3ddd919e92
2012-08-21setFontAttribute on TextLayouterDevice for templateview title.Rafael Dominguez1-0/+3
Change-Id: I963994f6c20995ea9d1037cadb6c17a43e8a28c9
2012-08-21template manager: setFontAttribute on TextLayouterDevice is neededCédric Bosdonnat6-7/+17
or you could have some weird values initialised much earlier (remember, that TextLayouterDevice shares its device) Change-Id: Ia8e44e578dc1bff6bdc97a3007db51e20692593d
2012-08-21Remove unused attributes from ThumbnailView class.Rafael Dominguez2-23/+0
Change-Id: I4cb95d4f2f11eed332067e332bd9dfd95d119ce9
2012-08-21add more runtime deps on resource files for unit-testsMatúš Kukan1-0/+4
Change-Id: Id9bbb2bbcafe335eada3f36ae103a9074a56848f
2012-08-20Remove dead java code, fields and local variablesNoel Grandin1-3/+0
Change-Id: If777dcb0e0142229df737c2f1e3e6ecb61f64168
2012-08-20Java update - fix various javadoc issuesNoel Grandin2-4/+3
Along the way, remove some javadoc comments that are completely incorrect. Change-Id: I02f96b6cbe665d2c10bd6ee245a7d8e2eef0f755
2012-08-20PreInit and MemoryError can be removed from coreCaolán McNamara5-15/+0
The logic of 8fb5a686f40eadd2bdd9519fc65f23cc29ec3163 in binfilter appears to hold for core as well Change-Id: I73cd47586c4c83858f9eca92e019ad0108b514e0
2012-08-20Ask user if it wants to overwrite a templateRafael Dominguez5-1/+55
Change-Id: I4e0aa8938ebd197b4b77767b9930a389569ba98d
2012-08-20Ask user if it wants to delete selected folder.Rafael Dominguez3-0/+12
Change-Id: If878c2a8ffab4c392df9a5171aa206bd23f4cfca