summaryrefslogtreecommitdiff
path: root/chart2
AgeCommit message (Collapse)AuthorFilesLines
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann173-720/+720
Change-Id: I71de514405bb9bcc746c1ab9633e7fe659888943
2015-11-10fix build, std::make_unique is C++14, use o3tl::make_uniqueNoel Grandin2-14/+16
after my recent boost::ptr_vector->std::vector<std::unique_ptr> conversions Change-Id: I5ebea198365bb2fddf43851c70ebea3f3e19d61b
2015-11-10fix buildNoel Grandin1-0/+1
after my boost::ptr_vector->vector<unique_ptr> conversions Change-Id: I1141e8ad614a650a274bf41bf3ebad9143c561c0
2015-11-10chart2: replace boost::ptr_vector with std::vector<unique_ptr>Noel Grandin2-43/+27
Change-Id: I5c374afcfa2760ebf21e461f38fe392692054dfe
2015-11-10chart2: replace boost::ptr_vector with std::vector<unique_ptr>Noel Grandin4-22/+18
Change-Id: Ia5c35cbd54045a79e896832adf2dbe68c5facf1f
2015-11-10chart2: replace boost::ptr_vector with std::vector<unique_ptr>Noel Grandin2-12/+11
Change-Id: I8bc458c2bcbcb72791ba93a6fe15c83e05d8fae1
2015-11-10chart2: replace boost::ptr_vector with std::vector<unique_ptr>Noel Grandin2-21/+20
Change-Id: I706b730ebbe6a7637a3f1a9cea80a1604f005a53
2015-11-09new loplugin: oncevarNoel Grandin5-20/+10
Change-Id: If57390510dde4d166be3141b9f658a7453755d3f Reviewed-on: https://gerrit.libreoffice.org/19815 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-11-06coverity#1338265 Uncaught exceptionCaolán McNamara2-2/+2
Change-Id: I5fd48ccaa9dc5c0477cb1d7da307c8403d92e3f7
2015-11-06coverity#1338253 Uncaught exceptionCaolán McNamara2-2/+2
Change-Id: Ia4235060dc2e8943a91e9115111bac9fe9a3fc66
2015-11-06loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)Stephan Bergmann1-1/+1
Change-Id: I5accc3f27b545c1dca6281201151729e3717fb0f
2015-11-05Reduce scope of #include <tools/poly.hxx>Matteo Casalin1-1/+0
Change-Id: I0d64393c029d27c8e6f3b6d360d2509dad16d860
2015-11-04Proper fix for coverity#1326893Stephan Bergmann1-16/+3
FindBugs' FE.FE_FLOATING_POINT_EQUALITY is about double value inaccuracies, not about NaN or negative zero (which is the topic of java.lang.Double.equals vs. ==). Reuse existing qa.TestCaseOldAPI.approxEqual method, moved to util.utils. Change-Id: I65f7bb1faf921e1c4035bb96aeff1eaf2cfb3153
2015-11-04yyyyyNoel Grandin3-5/+4
Change-Id: I9a947beefd2dfe21da8239e841ea3fb416bd1548
2015-11-02tdf#94269: Replace "n" prefix for bool variables with "b"Benjamin Ni4-21/+21
Change-Id: I178545792c7354a362658ac7ef8b1d4cf0865797 Signed-off-by: Michael Stahl <mstahl@redhat.com>
2015-10-30use uno::Reference::set method instead of assignmentNoel Grandin24-50/+44
Change-Id: I58410209f32f988f258a588364e0b037c2790211
2015-10-27loplugin:unusedmethodsNoel Grandin1-1/+1
Change-Id: I161cd52606c11b6008f5d8b1d8ee391692f91861 Reviewed-on: https://gerrit.libreoffice.org/19231 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-27Replace boost::bind by lambdas in chart2 tree.Mario J. Rugiero2-5/+2
Change-Id: Ida56649f15b58b3b11b3d43c5017fd5ebd9a2cf1 Reviewed-on: https://gerrit.libreoffice.org/19606 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-27tdf#91063 Move border to Gtkbox in Data Series content panelYousuf Philips1-1/+1
Change-Id: I33dd8f0688df09e57d565f0f5fb2883297e0497f Reviewed-on: https://gerrit.libreoffice.org/19607 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2015-10-24tdf#91063 Change show legend label to tooltip in chart sidebarYousuf Philips1-1/+2
Change-Id: I3d4cd44527bd9687df002543055286daf6e24a65 Reviewed-on: https://gerrit.libreoffice.org/19370 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2015-10-23implement text rotation for chart axis sidebar panel, tdf#94970Markus Mohrhard2-2/+45
Change-Id: Ifce97c437238bd1520a2122aa4027a1bcbba1e5d
2015-10-22make it harder to use the API wrongly, tdf#95056Markus Mohrhard1-8/+14
Change-Id: I07129285ac7f00513802a60c31d5de27f6f4a5d6
2015-10-22disable all error bar radion buttons in the beginning, tdf#95057Markus Mohrhard1-0/+3
Change-Id: I611a637038669fe855b4357045bff8d3eb5f8600
2015-10-21refactor out some com::sun::star typedefsNoel Grandin2-16/+5
which mostly serve to make the code harder to read Change-Id: Ia2a83fee9f850ab6f0bea6305ce8600d6b785fe8
2015-10-20new loplugin: badvectorinitNoel Grandin2-4/+8
look for places calling the 1-argument vector fill constructor and then immediately called push_back, which is generally a sign that its leaving empty slots. Change-Id: I34e69b8d09cc48c0d409499faaf192b9f86bc517 Reviewed-on: https://gerrit.libreoffice.org/17525 Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com> Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
2015-10-20loplugin:defaultparamsStephan Bergmann4-8/+8
Change-Id: I03541b984db147f8bd3ed35f83e297cf7eecd7f0
2015-10-19tdf#91063 Move border to Gtkbox similar to other panelsYousuf Philips1-1/+1
Change-Id: I8f385b2997585b3245ad862da60f0b394689b03b Reviewed-on: https://gerrit.libreoffice.org/19463 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-10-19loplugin:defaultparamsStephan Bergmann6-9/+9
Change-Id: I946e1970647d8005f54ac0362f5c2b04f867b22f
2015-10-19cleanup some local var declarationsNoel Grandin3-18/+18
found with git grep -nP '(\w+)\s+=\s+\g1\(' | lots-of-hand-filtering Change-Id: I598b0cfa6607823eaef09d95e610e05145c727f7
2015-10-18tdf#94960, Revert "it is insane to not map line and ..."Markus Mohrhard1-3/+3
This reverts commit 84254268bf5902d2405815970218e1893a7a673e. Change-Id: Id99bc1f44a4e23daaf2f12585981c0be66cbeda5
2015-10-18mark numbers as untranslatableStanislav Horacek1-2/+2
Change-Id: I44c44f96c0ece4d9412df234f57d0acb26b10f2d Reviewed-on: https://gerrit.libreoffice.org/19423 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2015-10-17coverity#1327446 Unchecked dynamic_castCaolán McNamara1-2/+1
Change-Id: Ib409b7fe4244b89f8767b20adcfae060f121b2f2
2015-10-16convert Link<> to typedNoel Grandin4-6/+5
Change-Id: I51d39d9d1688c4c734cd132213ef654fdc7d9b8e
2015-10-16convert Link<> to typedNoel Grandin21-83/+67
Change-Id: Icbba339dac0be31e30dff021bba06a219f8aecd6 Reviewed-on: https://gerrit.libreoffice.org/19405 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-15-Werror,-Wunused-private-fieldStephan Bergmann1-1/+0
Change-Id: I936ddbabb22e3dc16080ef0b11d585ea98442e57
2015-10-15calling IsSet() before Call() on Link<> is unnecessaryNoel Grandin1-6/+3
the Call() already does a check Found with: git grep -A 1 -w 'IsSet()' | grep -B 1 '.Call(' | grep ':' | cut -d ':' -f 1 Change-Id: Ia7248f5d62640b75f705e539c3d1183e39c0d847
2015-10-13remove some useless commentsNoel Grandin5-6/+3
found with git grep '// /' Change-Id: I948cf9ae61bbbf2ec706ca5b0572c4f27c58c745
2015-10-12disable arrow heads in chart sidebar, tdf#94971Markus Mohrhard1-0/+1
Change-Id: I631f34faf2befeb7cc61027c8fd59ef7b3543785
2015-10-12update the line panel for data points, related tdf#94969Markus Mohrhard1-3/+3
Change-Id: Ieffdfd1cc0d6b5cc0dd8394896aeb49838096a6b
2015-10-12update area panel for data points, tdf#94969Markus Mohrhard1-1/+3
Change-Id: I700ae8ff591ef1ea82887b1ec2cd7b4be04978db
2015-10-12Replace "SAL_FINAL" with "final" in LIBO_INTERNAL_ONLY codeStephan Bergmann3-4/+4
Change-Id: Ifa5ba21308e32df44571fa2941370f2f11179580
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann247-2302/+2302
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
2015-10-12Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY codeStephan Bergmann8-11/+11
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
2015-10-12convert Link<> to typedNoel Grandin22-56/+38
Change-Id: Iec15042138e0715459b2c9e872a7464d75a6b1eb Reviewed-on: https://gerrit.libreoffice.org/19305 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-12loplugin:mergeclassesNoel Grandin3-105/+37
Change-Id: Icd01de71fe87e0bf17eba39f5b00fc9a46765509
2015-10-10also update line panel for axis, related tdf#94933Markus Mohrhard1-1/+4
Change-Id: Ie280fa01dbe25287d01b7f36d152ee55ce5dbe07
2015-10-10also update line panel for average and trend line, tdf#94933Markus Mohrhard1-1/+1
Change-Id: I7ab991e94005665809ec52b8d4310209eb6ef75b
2015-10-10we need to take the SolarMutex when we change the UIMarkus Mohrhard1-0/+2
Change-Id: I6347a1466038afd625cf59ae2ee87cb4e2014aa0
2015-10-10use trendline context for trendlines, tdf#94931, tdf#94934Markus Mohrhard1-0/+3
Change-Id: I0cb9cdec33924e560b24744cc78d632025a189fc
2015-10-09don't put the checkbox into the HBox, tdf#94870Markus Mohrhard1-21/+19
Change-Id: I28f4895814d9fc419274de5681efa535e815f822