summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Adapt gcc3_solaris_intel bridge to GCC 4.7Gabriele Bulfon2015-02-194-85/+171
| | | | | | | ...similarly to 0fdbb5b0eabbaa571f3747fda12a56c938cba474 "Make cpp_uno/gcc3_linux_x86-64 bridge work with GCC 4.7" Change-Id: Idcafcb07678d02446172d7fde30631a342f6437e
* Fix component_getFactory function signatureStephan Bergmann2015-02-191-1/+1
| | | | Change-Id: I0cf3b4446cdd60162aa979c7e223d37d9f508014
* Remove unused using declarationsStephan Bergmann2015-02-191-7/+0
| | | | Change-Id: I096e1eb534562e4428b66b7b73ab2900e0c09a55
* gdk_screen_get_font_options is always available in gtk3Caolán McNamara2015-02-191-6/+2
| | | | Change-Id: I680ed37995b12abf54526b9205b131a62b5cf734
* bPrinter is always false, simplifyCaolán McNamara2015-02-197-23/+16
| | | | Change-Id: If40d1ccdec77c1bf0753411da71ac5c0b42c2765
* tdf#84881: Work in progress: Perform the RFC3161 interaction with the TSATor Lillqvist2015-02-192-6/+121
| | | | | | | | | | | | | | | | | | | Use libcurl to perform the request and get the response. Improve error messages (only use SAL_WARN, though, so sadly not visible to end-users). Still to do: Decode the response and attach it to the signature. Implement request encoding and response decoding for Windows. I probably should extend (and rename) the HashContextScope class to handle all resources that need explicit deallocation, instead of calling curl_slist_free_all(), curl_easy_cleanup() and SECITEM_FreeItem() in so many places. The error handling of the PDF export functionality would need to be re-designed so that we could show actual error messages to the user instead of generic "signing failed" ones. But that is typical for much of our code... Change-Id: I6288de3f09021f8e0f385870143fefffbac2a706
* tdf#84881: reqPolicy and certReq are optionalTor Lillqvist2015-02-191-6/+5
| | | | Change-Id: Ia5687bf2d68eef06aeb618d5387c663807d24560
* tdf#84881: WiP: Fill in more fields of the TimeStampReqTor Lillqvist2015-02-191-36/+54
| | | | | | | | | | Use the digestAlg in the NSSCMSSignerInfo, once we have it, as hashAlgorithm. Use a random number as nonce. Temporarily, dump the TimeStampReq object to a file for inspection in a DBG_UTIL build. Change-Id: I696271b3ccc6cef86a70bc78f86d6eae27a4af77
* tdf#87676 hide object, text and image toolbars by defaultYousuf Philips2015-02-191-3/+3
| | | | | | | Change-Id: I1829d5efb4b3a0a80f0f0124dcb3de1ebeca5fc5 Reviewed-on: https://gerrit.libreoffice.org/14550 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
* starmath: prefer exact types such as size_t and sal_uInt16 to sal_uLongTakeshi Abe2015-02-194-25/+25
| | | | | | | Change-Id: Idb8e8ab8f73248021b9aa13efa04e77d9e331475 Reviewed-on: https://gerrit.libreoffice.org/14530 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* tdf#87822 Dock the master view toolbarYousuf Philips2015-02-191-13/+4
| | | | | | | Change-Id: Ibe226daf26086eb9878a6da5b8ec2d8d2fc9e141 Reviewed-on: https://gerrit.libreoffice.org/14551 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* gtk3: improved checkbox and radiobutton renderingSzymon Kłos2015-02-191-2/+8
| | | | | | | Change-Id: I6da03869dea172fb8d50396010152479afec9cde Reviewed-on: https://gerrit.libreoffice.org/14554 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* "no matching function for call to 'get_pointer'," use lambda insteadStephan Bergmann2015-02-191-3/+5
| | | | Change-Id: I40ea3b781ec35171706a277acff6eb2eab29c297
* Missing constructorStephan Bergmann2015-02-192-1/+10
| | | | | | | | | ...the implementation in ChartView.cxx oddly got removed from <https://gerrit.libreoffice.org/#/c/14431/1> to <https://gerrit.libreoffice.org/#/c/14431/2>, but the declaration in chartcore.component was missing from the start Change-Id: I71699ee74278f7e419eca63c5784b46efc42d96b
* Clean upStephan Bergmann2015-02-192-37/+0
| | | | Change-Id: Id91be8ec8a97d8fad398d798cd2a9b77773a39e2
* callcatcher: update unused codeCaolán McNamara2015-02-1918-199/+0
| | | | Change-Id: If6e0cbf8544ca7a4668cdc67fcf390d8835b7017
* boost->stdCaolán McNamara2015-02-1965-262/+262
| | | | Change-Id: Icae6b6f07ad8dbd287fdfc689739187883a07775
* tdf#83099 fix Top of formula bar is missing when expanding on Windows 7Tomofumi Yagi2015-02-191-1/+12
| | | | | | | | | | | | | | | | | This is workaround patch. ToolBox::ImplFormat() method places it to the new position, when the new item is added. ToolBox::ImplFormat() method determines whether or not the item is newly added, using that the new item's Top Coordinate is 0. However, it seems that the non-new item's Top Coordinate is 0 on Windows 7 with default(aero) theme, using small icons. We also need to consider in this case. Change-Id: I35cf81502799432f63e0920219fcbaac9050d81f Reviewed-on: https://gerrit.libreoffice.org/14538 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* allow generated, unique frame name to be savedJustin Luth2015-02-191-0/+2
| | | | | | | | | | | | | | | The document in tdf#77122 shows that frames can exist without a name. Going to frame properties showed "Frame1" as the name for each frame, and pressing OK didn't "set" this suggested name - the name remained blank. An alternative fix is removing "pNameED->SaveValue();". However, this approach seems safer. Change-Id: I1ed9d67442d55f2c481e6e4b35a876721a835522 Reviewed-on: https://gerrit.libreoffice.org/14548 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* tdf#78148 Ordinal numbers should not be auto-capitalizedNiklas Johansson2015-02-191-0/+1
| | | | | | | | | | | FnChgOrdinalNumber should return true if it changes the ordinal number. This seems to be accentually removed when the function was internationalized and has always returned false since. Change-Id: I633058a99ec033e0c33f807776364a52e22e9c64 Reviewed-on: https://gerrit.libreoffice.org/14535 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* tdf#65788: svg export - put transform attribute into text elementChr. Rossmanith2015-02-191-15/+16
| | | | | | | | | if transform is put into an inner tspan element rotated text isn't rendered rotated Change-Id: I6fcab1db0e213c65fe8ba88a7694fd10c902bfec Reviewed-on: https://gerrit.libreoffice.org/14314 Reviewed-by: Katarina Behrens <bubli@bubli.org> Tested-by: Katarina Behrens <bubli@bubli.org>
* sw: nAnz -> nCountMiklos Vajna2015-02-193-10/+10
| | | | Change-Id: Ia8c237009634eb0c750db42da4f68a31d40c5368
* svx: nViewAnz -> nViewCountMiklos Vajna2015-02-191-3/+3
| | | | Change-Id: I76e7f2b29c6583c32a3c2b49f3365688f8f81bce
* loplugin:externandnotdefinedStephan Bergmann2015-02-193-2/+37
| | | | Change-Id: I94271681ea4ec7617eaf706fb443ebb9d1b0bc15
* tdeab: Fix unit test failure when TDE support is enabledTimothy Pearson2015-02-193-6/+23
| | | | | | Change-Id: I91311e2017a93dbfbffb20b9ba4595c62ce8165b Signed-off-by: Timothy Pearson <kb9vqf@pearsoncomputing.net> Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
* unusedcode: Remove few methodsMatúš Kukan2015-02-192-23/+0
| | | | Change-Id: Iacb18a06057b6becd077a49a71a95fb7e0961f3f
* small clean-upMarkus Mohrhard2015-02-191-6/+3
| | | | Change-Id: I6a327df821ea439e6dcffe26eeee022c3e3583e8
* add first useful version of new conditional format UNO APIMarkus Mohrhard2015-02-1920-0/+702
| | | | Change-Id: I8b58ae33ad71d0df6ea30f205b4f331541f5b821
* there is no x error bar for bar charts, related fdo#66455Markus Mohrhard2015-02-191-4/+8
| | | | | | e.g. fdo#66455-1.ods exported to OOXML Change-Id: I81c65071cef820076b3f4788b45152cb48eb608d
* document one more place where MSO 2007 export wrong valuesMarkus Mohrhard2015-02-191-1/+1
| | | | Change-Id: Ic35f1188e66cf89f203b34f354a2c4b11f1f65a2
* add test for tdf#89454Markus Mohrhard2015-02-192-0/+19
| | | | Change-Id: Iefb52f6fa77cf90955dbb47c1b9ca7ab699a43eb
* this should be [-90, 90] and not (-90, 90), tdf#89454Markus Mohrhard2015-02-191-1/+1
| | | | Change-Id: I943be2cf660d2dc77eebd776208af96c0b5f67a4
* start documenting problems around OOXML specMarkus Mohrhard2015-02-192-1/+10
| | | | | | | | | We implement in many places wrong default values based on how MSO 2007 behaves. Newer MSO versions produce correct files so our import is wrong. Instead of changing the default value we need to be able to use default values based on the document producer. Change-Id: I6a2a0b30885ebccc384d17f896709ecdd475d786
* make the code easier to readMarkus Mohrhard2015-02-191-5/+7
| | | | Change-Id: I8cdfe1cddf57a36054bfe850173ef6130aa608b5
* No vbaevents_component_getFactory unless HAVE_FEATURE_SCRIPTINGTor Lillqvist2015-02-191-1/+1
|
* Change var name: propertie->propertyStateJulien Nabet2015-02-182-169/+169
| | | | Change-Id: I85397752e2660088b378d8ec71765a4167f5183a
* Typo in xsl: "page-layout-propertie" instead of "page-layout-properties"Julien Nabet2015-02-181-1/+1
| | | | Change-Id: Ie5a298886e3c6638b041600b82b642ac69f7f33b
* no need for that anymoreMarkus Mohrhard2015-02-181-4/+0
| | | | Change-Id: I53002c0b97da66c44429b5ace0fc709b5e8a325f
* TyposJulien Nabet2015-02-1836-53/+53
| | | | Change-Id: I845a85e1aad4a0708f2b43f7d94606b4b5513ee4
* add test for missing chart area style fill import, tdf#89451Markus Mohrhard2015-02-182-0/+19
| | | | Change-Id: I052838eaf4134a72feb067fc2a1355fabcafe11f
* better way to set default for chart area fill style, related tdf#89451Markus Mohrhard2015-02-184-6/+12
| | | | Change-Id: Iee7fea0f55cf54d43a349b6cc0ffa25995069e40
* implement fill based on style also for chart area, tdf#89451Markus Mohrhard2015-02-182-5/+10
| | | | Change-Id: I7b488e222cd44e75d1e0ff7f8e545e9399f418b5
* boost->stdCaolán McNamara2015-02-189-41/+31
| | | | Change-Id: Ifa87783f68b0fab98f8a0f7cd6ed867202b4532f
* coverity#1267652 Logically dead codeCaolán McNamara2015-02-182-3/+7
| | | | Change-Id: Ie36cf4193d2e202894e378b0094d399267291023
* Also mention -fstack-protector-strong when linkingStephan Bergmann2015-02-181-0/+1
| | | | | | | | ...there appear to be GCC tool-chains (like the one employed by xdg-app) that need some libssp_nonshared.a linked in for -fstack-protector-strong behind the scenes. Change-Id: Ia4dd8b11d26f3dc7fec231d6b8b7950f003333ce
* Resolves: rhbz#1193971 clear hard-coded char props in table cells...Caolán McNamara2015-02-182-18/+35
| | | | | | | | | | | | | | | | | like we do already for shapes. So now when attempting to set replacement char properties on the entire cell, clear any hard-coded sub ranges within the existing paragraphs. This extends the effort of commit a217f3cb2dce71a4322f78ceb45edb6f171b2b65 Author: Matúš Kukan <matus.kukan@collabora.com> Date: Tue Aug 26 10:16:34 2014 +0200 bnc#770711: Make changing table text color in impress always work to encompass all character properties, not just color Change-Id: If8b426c3531b4678868d8351426db32c3c558650
* fix JunitTest_toolkit_complexCaolán McNamara2015-02-181-5/+2
| | | | Change-Id: I396e8e04df40efb1559995e78761e1954ba7bc6f
* tdf#89436 ScHorizontalAttrIterator - fix indicesLászló Németh2015-02-181-2/+2
| | | | Change-Id: I800270cc4b1a812834be57b9eb332b4b299c0fe1
* tdf#84881: WiP: Handle TimeStampReq::extensions correctlyTor Lillqvist2015-02-181-9/+6
| | | | | | | Also, pass dest as NULL to SEC_ASN1EncodeItem(). Now we can call SECITEM_FreeItem(item, PR_TRUE) on its return value. Change-Id: Ia30b70990971aba15158f97528524d879a04da3c
* -Werror,-Wunused-const-variableStephan Bergmann2015-02-181-0/+2
| | | | Change-Id: I79d47b843be844bcb413018522564d6e6d65a4db