summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fdo#43157 : clean up OSL_POSTCONDMichaël Lefèvre2014-04-039-16/+14
| | | | | | | | | | Conflicts: include/sal/log-areas.dox Change-Id: I770b8b9fb82f873ccb88dc26ac05206f703ddf33 Reviewed-on: https://gerrit.libreoffice.org/8805 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* Related: fdo#75307 use the unique auto help id to identify tabpagesCaolán McNamara2014-04-033-8/+42
| | | | | | and dialogs that are loaded from the .ui format Change-Id: I37aea52a3973d8d8f6a2ce8dabf80bb1e64db43f
* wrong ellipsizeCaolán McNamara2014-04-037-14/+3
| | | | | | | the widget in glade for changing ellipsize gets focus and when you mouse wheel up and down often it gets accidentally changed, sigh. Change-Id: I6dc0dc6d9985ea0ff9a34817291e642a9706bf0f
* Support SmartTagRecognizers againStephan Bergmann2014-04-031-1/+1
| | | | | | | | | The XContentEnumerationAccess is at the service manager, not the component context. Regression introduced in LO 4.0 with 4381f3dd5ae9e042840a16f69d07267208160420 "fdo#46808, Use BreakIterator ::create method." Change-Id: Idb7d38b9c14beea9a9ad347e6cbc8190d7248b2d
* pivot: In "Data Field Options" dialog change Add -> OkTomaž Vajngerl2014-04-031-3/+3
| | | | Change-Id: Ie6b1670445fd15e2ba791b13e4b6cd6803b2b9df
* pivot: Apply changes made in "Data Field" and "Data Field Options"Tomaž Vajngerl2014-04-038-65/+150
| | | | Change-Id: If8560d47c5b4e64367c441237c1e38f964cf6825
* vcl: apply font height if defined as "size" attribute in .uiTomaž Vajngerl2014-04-031-0/+7
| | | | Change-Id: I28719b16fb47a618420195640f4f75a79ca889ea
* fdo#73552 - Set name of CSV import sheet to something friendlyAditya Kale2014-04-031-0/+2
| | | | | | | Change-Id: Ia68283947d954d648fa25356f2b95ba0ab7010aa Reviewed-on: https://gerrit.libreoffice.org/8811 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
* override specifier 'override' not allowed on a destructorMatúš Kukan2014-04-032-2/+2
| | | | Change-Id: I8bcc31900a95f2b7600645decafdfe528343d6d7
* Make it easier to catch code that assumes SalBitmaps are created pre-clearedTor Lillqvist2014-04-031-0/+8
| | | | | | | | | | | | In a DBG_UTIL build fill the maContextBuffer and maUserBuffer of a QuartzSalBitmap with an easily recognized pattern. Helps catch situations where by coincidence they appear pre-filled with zeros most of the time and almost everything usually looks fine. Or is the QuartzSalBitmap implementation wrong, and SalBitmaps *should* be created filled with zeros? Change-Id: Ib5207779f2a47b9b7e539d8646b4128fea0ec150
* sccomp: Share common code and have only one library.Matúš Kukan2014-04-0313-1003/+699
| | | | | | And use constructor feature for UNO implementations. Change-Id: I42b6a6f417049cc8e2d44b74c7adc552680b1f2d
* sccomp_lpsolver does not need to link against scMatúš Kukan2014-04-031-1/+0
| | | | Change-Id: I47a758fbcfcefc2bdd1cdbb89ef219a7ebb2af47
* gbuild: fix check for registered librariesMatúš Kukan2014-04-031-1/+1
| | | | Change-Id: I0e8524a0933114196a80317b9a427d8cd3f3e459
* gbuild: Allow to use more components in one library.Matúš Kukan2014-04-031-3/+0
| | | | | | | It probably does not make much sense in general but will be used to optionally disable some implementations in a library. Change-Id: Ib491b8b642907b5bb20d458cbf766c9c9a5a5111
* fdo#76589 : FILESAVE: DOCX: Numbered list is not preserved after RTPallavi Jadhav2014-04-033-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | Issue : Numbered list without suffix does not get preserved after Roudtrip. Description : - For level zero LO was writing w:lvlText with epmty value. - This was because in DocxAttributeOutput::NumberingLevel() check was based on empty NumberingString. - But for "deciaml" also rNumberingString appears to be empty for level-0 Implementation : - Added check to write empty value for w:lvlText only if NumberingType is "bullet" with level-0. - This will not write empty w:lvlText with level-0 and NumberingType as "decimal". Reviewed on: https://gerrit.libreoffice.org/8768 Change-Id: Ic6ece45e0122da05013beac93a6e11fac926514d
* sw: translate internal name of default char/para styleMiklos Vajna2014-04-031-2/+2
| | | | Change-Id: Icda048beb9b4b580cdf2843ee34698decc035d04
* oox: Preserve table style.Jacobo Aragunde Pérez2014-04-039-0/+46
| | | | | | | | | | | | | | | | | Table style is a property that defines a set of background and line attributes for cells. These attributes depend on theme settings (e.g. theme colors). We added a grabbag to the table object to save the table style name. We detect that name on export and write it back to the document. Finally, modified an existing unit test to check this attribute too. TODO: To get the table style working properly after a roundtrip, we must preserve it and also check that its values are not being overwritten by different cell or table properties. Change-Id: Id0e022a389561960c21ab874db33649499735024
* oox: Preserve cell theme color.Jacobo Aragunde Pérez2014-04-0310-8/+79
| | | | | | | | | | | | | | | | | | | | | When some background color is set to a table cell, it is stored in the cell properties tag <tcPr> like this: <w:shd w:fill="ECD2B6" w:color="auto" w:themeFill="accent6" w:themeFillTint="66" w:val="clear"/> The theme-related attributes in w:shd were not being preserved. To fix this I added an InteropGrabBag to the cell properties object, which is filled with the attributes of w:shd to be checked on export. The exporter checks if the cell color is still the original color that was imported from the file, if it is not it means the user has manually changed it during the edition and the new color is written instead. Finally, added a unit test for theme attributes on tables. Change-Id: Ica8091b5eb4075e51912a255650a1d9d64f5767a
* vcl: sal_Bool->bool and cleanupNoel Grandin2014-04-0337-121/+107
| | | | | | | | | - remove unused PFilterDlgCall typedef - remove bool parameter from PFilterCall typedef - it was always being called with false, and nothing was reading it Change-Id: Ic56127e7d55254a7b9b65849a21cb286f52344d1
* sfx2/tbxctrl.hxx: sal_Bool->boolNoel Grandin2014-04-0314-40/+19
| | | | | | | and clean up the mess around the two different Select methods which just led to confusion in the overriding classes. Change-Id: Iea0ea85752180d0dc50d2b4ddb3d861e8447fb0a
* svx/fmgridcl.hxx: sal_Bool->boolNoel Grandin2014-04-032-4/+4
| | | | Change-Id: I610c408178f194db2a29e966feccba377f36e2cd
* svtools/treelistentry.hxx: sal_Bool->boolNoel Grandin2014-04-034-20/+20
| | | | Change-Id: I0fb2827c41024216f574266e61a11b1cbb7bce28
* svl: sal_Bool->boolNoel Grandin2014-04-0346-111/+111
| | | | Change-Id: I6938314a08d061d2b07d9129742d74a989bd1385
* filter/msfilter: sal_Bool->boolNoel Grandin2014-04-0326-862/+861
| | | | Change-Id: I24deda680469ce99ba358a68e83551bdb584751a
* vbahelper: sal_Bool->boolNoel Grandin2014-04-038-30/+30
| | | | Change-Id: Ic4bcc2fa02426e1995d08a6992cc5b35777c1c9a
* oox: sal_Bool->boolNoel Grandin2014-04-0317-44/+44
| | | | Change-Id: Ia05b3210314c39db5110eded731f2be4b7405e87
* oox: sal_Bool->boolNoel Grandin2014-04-038-85/+85
| | | | Change-Id: I50788585dbcc489325dc9536a8e4d974a710e30d
* oox: sal_Bool->boolNoel Grandin2014-04-039-48/+48
| | | | Change-Id: I2ad60bd64cabb29a9e909f31e7d5bd92989120f7
* oox: sal_Bool->boolNoel Grandin2014-04-037-42/+42
| | | | Change-Id: If611cf344d82640b284c159e2e6394074b30e2db
* package: sal_Bool->boolNoel Grandin2014-04-038-42/+42
| | | | Change-Id: I66999e5d9f827650f4c1bccb14178f8fa8a57cbf
* sfx2/objface.xx: sal_Bool->boolNoel Grandin2014-04-033-28/+28
| | | | Change-Id: I1227c958d58903dc114a4e4173fb2714b2ec33f2
* add comment about hacked sal_Bool paramNoel Grandin2014-04-031-0/+2
| | | | Change-Id: I005c523765fbe530dfcb7755cef3081c24c6a734
* svx: sal_Bool->boolNoel Grandin2014-04-031-13/+13
| | | | Change-Id: I3a293e72413e1dc39eaa4b5c289fc4fab6b556fd
* svx: sal_Bool->booNoel Grandin2014-04-0315-52/+52
| | | | Change-Id: I305ccda011463a3b24de48fae168ffae4da264c1
* dbaccess: sal_Bool->boolNoel Grandin2014-04-0322-173/+173
| | | | Change-Id: Ida8ee14bb6350fad815d741ca7a2b7db04a8ed11
* Kill "Portal Demo HACK", whatever it isTor Lillqvist2014-04-031-29/+1
| | | | Change-Id: Ie07576d2d63f4db9acf7ebf09ebd25a4f7bd014b
* Kill superfluous vertical whitespaceTor Lillqvist2014-04-03138-1787/+0
| | | | Change-Id: I8c37b9ec45836f9c0e2dc0cf232f96f23c7c36d3
* Unused declarationStephan Bergmann2014-04-031-3/+0
| | | | Change-Id: Ib753cacf91baa6a761ac8f971b67c0f5ade555b6
* Use boost::noncopyableStephan Bergmann2014-04-039-52/+43
| | | | Change-Id: I9cba1299c54f196a5a7b35384f4c15bbbea273bb
* Use boost::noncopyableStephan Bergmann2014-04-032-4/+5
| | | | Change-Id: I1cd2ad1284f2fb9f6847cdb9175a5872a66726cd
* Use boost::noncopyableStephan Bergmann2014-04-031-5/+1
| | | | Change-Id: Ifeee0632f6e163037bea9ba2ee8d19f050f9a212
* add concept for chart xshape testsMarkus Mohrhard2014-04-037-0/+1931
| | | | | | | will be run on a tinderbox for now that will be the reference for anything related to it Change-Id: Ib795b53f74e9207d0272342f12d426bbc21164b4
* make the tolerance file optionalMarkus Mohrhard2014-04-031-3/+6
| | | | Change-Id: I172cbd54a231a4f9b621fb85c7f349839286143a
* Pivot dialog: Make it resemble the old dialog a bit.Jan Holesovsky2014-04-021-390/+416
| | | | | | | | No idea what is best here :-) - MSO is more like what it was before this change, OTOH this layout looks more as the final pivot table, which (in my eyes) makes it easier to use. Change-Id: I5acb8c151139688c71b06d07006499513a17bdb9
* writerfilter: unused Exception classMiklos Vajna2014-04-021-54/+0
| | | | Change-Id: I127ef1183a2c146471668680965fa3d72f6a8f81
* writerfilter: unused SubSequence classMiklos Vajna2014-04-021-247/+0
| | | | Change-Id: Ib52309202714e67af78ef5a47f519779d849931c
* unused WRITERFILTER_RESOURCEMODEL_DLLPUBLICMiklos Vajna2014-04-0211-29/+23
| | | | Change-Id: Ia09cd8738e7bfbb942690efb193c0de30e93f69c
* fdo#71720 fix transalate stringsWinfried Donkers2014-04-021-3/+3
| | | | | | | Change-Id: I8758e2407f1d3d1e09324b4fe5cc0442f8dda34d Reviewed-on: https://gerrit.libreoffice.org/8819 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
* Add compat::isInMainFileStephan Bergmann2014-04-022-11/+16
| | | | Change-Id: I0e155c6c68a43020110a8e1c0cb29cabdcade454
* Internal linkageStephan Bergmann2014-04-021-2/+2
| | | | Change-Id: Id329745fa1988003b4771c6b7d75f2db0930184c