summaryrefslogtreecommitdiff
path: root/svx
AgeCommit message (Collapse)AuthorFilesLines
2015-05-15convert META_*_ACTION constants to scoped enumNoel Grandin4-73/+74
Change-Id: I8ecfbfecd765a35fafcbcc5452b0d04a89be2459
2015-05-15convert POPUPMENU_ constants to scoped enumNoel Grandin1-1/+1
Change-Id: I4cdaf36581d1e1daa39929e621070d18a9996852
2015-05-14convert GRFILTER_I_FLAGS to scoped enumNoel Grandin1-2/+2
Change-Id: Ic1cb9b32fe252706cd607abb2ae1fd5a00999901
2015-05-14convert KERNING_ constants to scoped enumNoel Grandin1-1/+1
Change-Id: I58031485aaa9ebdeb986a3ee0376f36a9f667947
2015-05-14refacotr DbGridControl::NavigationBar to use RenderContextTomaž Vajngerl1-17/+19
Change-Id: I0675158d83d37706be60dab430e6b9f7ea749bc7
2015-05-13loplugin:staticmethodsStephan Bergmann1-10/+12
Change-Id: Ia16605c8227573948e2ac750414e9dff3efc2f81
2015-05-13convert FLOATWIN_POPUPMODEEND constants to scoped enumNoel Grandin2-12/+12
Change-Id: I36fea4608c744c941bdff401b649fa46302b4dbd
2015-05-13convert FLOATWIN_POPUPMODE constants to scoped enumNoel Grandin6-17/+17
Change-Id: I744d430ef6a506977eb10b892582c8969ec27524
2015-05-13refactor TableWindow, ColumnWindow to use RenderContextTomaž Vajngerl1-55/+66
Change-Id: I000ac253a57f9fdbb14c700e4a0163c3ba18a7bb
2015-05-13refactor GalleryPreview to use RenderContextTomaž Vajngerl1-56/+59
Change-Id: I0fd307e0db532e9f49ecc0b1431ce59ba869b19d
2015-05-13refactor PopupControl to use RenderContextTomaž Vajngerl1-5/+5
Change-Id: I3587cbe8a4025869422106b68c946981da1c6cb9
2015-05-13refactor LineWidthControl to use RenderContextTomaž Vajngerl2-34/+37
Change-Id: I5ca1a367c4eba0a2f39c2aa9702e3d3bd5b2477f
2015-05-13refactor SvxRubyChildWindow to use RenderContextTomaž Vajngerl1-211/+224
Change-Id: Ia60e0027cc915fda68ee10dee25c78a84a5d7945
2015-05-13refactor SvxSwFrameExample to use RenderContextTomaž Vajngerl1-29/+34
Change-Id: Ice4ffab3bc98b76b7ee90aa4570b2858b01bf906
2015-05-13SvxShowCharSet cleanupTomaž Vajngerl1-9/+9
Change-Id: Iadb110bb6ec64c66f1a9b54c43d19664f890ec74
2015-05-13refactor SvxParaPrevWindow to use RenderContextTomaž Vajngerl1-53/+58
Change-Id: I3eb7ad267b261c28b193dfc6de24e4facdf57850
2015-05-13refactor SvxPageWindow & SvxXMeasurePreview to use RenderContextTomaž Vajngerl2-132/+125
Change-Id: Ic6f4d1238c0a4c8f4632cf26099ef406caf5dbda
2015-05-13refactor FrameSelector to use RenderContextTomaž Vajngerl2-80/+83
Change-Id: I53123245277a76aa6f782e589d10b82e3dc1d9e7
2015-05-13refactor SvxFontPrevWindow to use RenderContext + clean-upTomaž Vajngerl1-432/+419
Change-Id: Ibbb23adff4c38b4c819894b6714de355f13219c3
2015-05-13refactor SvxRectCtl & SvxPreviewBase + sub to use RenderContextTomaž Vajngerl1-142/+147
Change-Id: I2ca96a94273c7985cef284eebd4199ad7a4b98f7
2015-05-13refactor Svx3DPreviewControl to use RenderContextTomaž Vajngerl1-2/+2
Change-Id: I73e929d217c74b4f6edfc3d70e0c046574c27507
2015-05-13refactor DialControl to use RenderContextTomaž Vajngerl1-7/+7
Change-Id: I9efaf6e4910606dd6b7f70420918d82c193cb244
2015-05-13refactor SvxXConnectionPreview to use RenderContextTomaž Vajngerl1-5/+5
Change-Id: I896970a8df1e4bad0c73d5fa7838464bea231e5f
2015-05-13refactor GraphCtrl to use RenderContextTomaž Vajngerl1-6/+6
Change-Id: Id0a3d24e7c6d6910b62f2950dcb7bd5cb67f59ad
2015-05-13refactor ContourWindow to use RenderContextTomaž Vajngerl1-43/+36
Change-Id: I4b7b5f98b56c8cfa41dcd71ccb25e2d6c809cac7
2015-05-13refactor SvxShowCharSet to use RenderContextTomaž Vajngerl1-125/+126
Change-Id: Ib88b654cbdd321ba51246346a1648d7da2596aff
2015-05-13refactor ColorWindow to use RenderContextTomaž Vajngerl1-11/+6
Change-Id: Ieec862a1e13ffd18a74aba9569268e84ac078a57
2015-05-12tdf#84153: "Edit Comment" in context menu when a cell has a commentRavindra_Vidhate1-0/+23
Problem Description : 1. When a cell doesn't has comment, the contextual menu shows menu item "Insert Comment". 2. Also when the cell has the comment, the contextual menu shows following menu items "Insert Comment" "Delete Comment" "Show Comment" In the second case mentioned above, the contextual menu should show the menu item "Edit Comment" instead of "Insert Comment" XML difference: None After RT : None Solution : In this patch, a new menu item "Edit Comment" have been added. So at the time of the display it checks whether cell has comment associated with it. If comments are present for cell, it will display "Edit Comment" in the contextual menu otherwise "Insert Comment" will be displayed. TODO: Writing a UT seems to be tricky for this change. Need to analyze and will raise the UT in separate CL. Change-Id: Ie0499d02157c4fd18894c5f203c363f64659f3b3 Reviewed-on: https://gerrit.libreoffice.org/15713 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-05-12tdf#80340: Table changes format in PPTX formatyogesh.bharate0011-1/+1
Problem: - If the PPTX contains embedded table i.e copied from excel, when we open it in impress it row height increase due to this table format changes. - Table contents empty row i.e without text, then row height increase because text height is added also added for empty row. Solution: - Added check whether row contents text or not. Change-Id: I9f8a99aa407384505f0075168cf64fd51b8b4c7b Reviewed-on: https://gerrit.libreoffice.org/14925 Tested-by: Jenkins <ci@libreoffice.org> Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2015-05-12Switch VclBuilder constructors to use VclPtr.Michael Meeks14-44/+35
Change-Id: Id35a86eb52bbde6ca09a5e61a0b1a79b23be8faf
2015-05-11Revert "Switch VclBuilder constructors to use VclPtr."Michael Meeks14-25/+34
Behaves oddly; not ready yet. This reverts commit 9f016bd69422bdfb4cf7c4f5e57356eb98db2d8c. Change-Id: I30d746eac29d1dbe78d3072b10d2e22c051e3f4e
2015-05-11Switch VclBuilder constructors to use VclPtr.Michael Meeks14-34/+25
Change-Id: Id35a86eb52bbde6ca09a5e61a0b1a79b23be8faf
2015-05-11tdf#91052 - more macros for 'make' constructors.Michael Meeks21-122/+59
Change-Id: Iece86485c52041b66cde91d7fbc772db16d90a93
2015-05-11convert COMMAND_ constants to scoped enumNoel Grandin12-19/+23
Change-Id: I88e67f89dbbab0646e8f106dfeb32c6ee1bb0b95 Reviewed-on: https://gerrit.libreoffice.org/15671 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-05-11tdf#91052 - more macros for 'make' constructors.Michael Meeks4-18/+8
Change-Id: Ic7ff127e2793993f9dcf1018f8d5ed4f2858a2c4
2015-05-11loplugin:cstylecast: nop between pointer types of exactly same spellingStephan Bergmann11-23/+23
Change-Id: I76a990da8aba9b62b3925d9632150930656e510f
2015-05-11refactor ValueSet to use RenderContextTomaž Vajngerl3-10/+17
Change-Id: I3985804f8cfd1b6807bc02bef5af3e24e5cb3cbf
2015-05-11refactor Ruler to use RenderContextTomaž Vajngerl1-1/+1
Change-Id: Ic4c57e161419a9b185b2c5ee8e8b79d3da9e4a7e
2015-05-11refactor TreeListBox to use RenderContextTomaž Vajngerl5-64/+61
Change-Id: I901a1f1f9732fb66718dca34c698a851e5b0d87f
2015-05-10related tdf#88608: find: add string for reaching start of documentJoren De Cuyper2-0/+6
If you searched backwards and reached the start of the document, the text "Reached the end of the document" was shown. Change-Id: Ic35884de2f1ada07e76c9c3e27cf6c81c4a83304 Reviewed-on: https://gerrit.libreoffice.org/15597 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-05-10Use IMPL_LINK_NOARG[_TYPED] where applicableStephan Bergmann7-11/+11
Change-Id: I70598072c1d492e360ef46dd7b5ef5a2fa4be495
2015-05-10No more need for EMPTYARG in C++11Stephan Bergmann2-3/+3
Change-Id: I8a6abc563fa80a801d1907100d0b1138d260c36e
2015-05-10Use IMPL_[STATIC_]LINK_NOARG where applicableStephan Bergmann6-22/+22
Change-Id: I1e24b032bdeea017b0e77c5446e55310899ce752
2015-05-10NOINSTANCE is implied now in IMPL_STATIC_LINK...Stephan Bergmann5-5/+5
Change-Id: Ifb032457d6c1b279c4183282ef2b271c706dd71a
2015-05-10Replace IMPL_STATIC_LINK[_TYPED] with more useful variantsStephan Bergmann1-2/+2
Change-Id: Ic740510b891194ebef6a8fe35bd56f2f1d785c3d
2015-05-09tdf#88608: clear SearchLabel when altering the search stringJoren De Cuyper1-0/+6
Change-Id: Ifc31fbd1ddee1e055bb62b9ad098ae9410758147 Reviewed-on: https://gerrit.libreoffice.org/15598 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-05-08lopluign:staticmethods: Handle DECL_LINKStephan Bergmann4-4/+7
Change-Id: Ib27854a8470f3ff5b208cb949a7bd02f2a86c969
2015-05-08callcatcher: update unused codeCaolán McNamara1-17/+0
Change-Id: I8563922204d3ec93bf138cbd1aaba620c0215bf7
2015-05-08Rephrase comparisons between bool and sal_BoolStephan Bergmann1-1/+1
...to cater for forthcoming loplugin:implicitboolconversion improvements Change-Id: I88c0c4681137022005c3a4c418e91cb17bc17148
2015-05-07tdf#91051: fix typo Trancparency->TransparencyAndrea Gelmini2-6/+6
Change-Id: I8874e38a4bed6adb409a954c15ce7c9e4348c572 Reviewed-on: https://gerrit.libreoffice.org/15665 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>