summaryrefslogtreecommitdiff
path: root/chart2
AgeCommit message (Collapse)Author
2015-03-18create new 'enum class' SotClipboardFormatId to unify typesNoel Grandin
of which there are several. There are some issues here I am unsure of - the SW and SC and CHART2 modules essentially ignore the enum values and assign their own ids Perhaps I should change them to use the common values and create new enum values where necessary? - the sc/qa/ and sq/qa/ and starmath/qa/ code was doing some dodgy stuff. I translated the code to pass down the stuff numeric values to the underlying code, but perhaps further fixing is necessary? Change-Id: Ic06d723e404481e3f1bca67c43b70321b764d923
2015-03-16add test for fixed dispBlanksAs OOXML importMarkus Mohrhard
Change-Id: I096e235560c81ef4c55cf14ead3544b977916c20
2015-03-16add tests for autoTitleDel flag default value fixesMarkus Mohrhard
Change-Id: I9860142f2da9c19f52f3a8a2be6ec851bdf81b6e
2015-03-13Typo: taget->targetJulien Nabet
Change-Id: Id46e36734a3ef6eccfb59d69d87eb48bb86ac2fd
2015-03-13tdf#43157: Fix format string violations in OSL_TRACE etc.Stephan Bergmann
...for a 32-bit build, similar to what ee11e221d2108212619e1bbe7f029e7d9afdba32 "tdf#43157: Fix format string violations in OSL_TRACE etc." did for a 64-bit build Change-Id: I05dd79ede3e66cb9ab7a33792319eb34b34c82dd
2015-03-13V803 decreased performance postfix incrementMichael Stahl
These are pretty silly anyway, but apparently it complains even about integer variables which make this rather a waste of time. Change-Id: I15e847d33d5decd2adcab04e4f1567d3997d28a2
2015-03-12CppCheck cleanlyness : reduce variable's scopeMichaël Lefèvre
Change-Id: I5bd18b1a93f7197121eb42f6b82d2d8d87e7671f Reviewed-on: https://gerrit.libreoffice.org/14843 Tested-by: Michael Stahl <mstahl@redhat.com> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2015-03-11utl::ConfigItem::Commit() should call ClearModified()Michael Stahl
Rename the virtual function, and add a new non-virtual Commit() to do that. Change-Id: I09421df781ba965d6ff638b46cd8214fb3a00022
2015-03-11V668 no sense in testing the result of new against nullCaolán McNamara
Change-Id: I7783d96e40de7a8df794f143d2c7830bf3314218
2015-03-10tdf#89592 Using initializer_lists to populate Sequence<PropertyValue>Swachhand Lokhande
Change-Id: Idef9dd55eb1719eaf592bc4a86440cbd5aa4fb32 Reviewed-on: https://gerrit.libreoffice.org/14781 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
2015-03-09V801: Decreased performanceCaolán McNamara
Change-Id: Iba139ede7bd72e23c0b7a28a8a4ff38ea816725a
2015-03-07SdrMarkView: aHdl -> maHdlListMiklos Vajna
aHdl is an SdrHdlList, so reading aHdl.GetHdl() as "get the handle of the handle" was confusing. Change-Id: Ib21fa74cc1daa4b6d2034f07715147a8fb0cf934 Reviewed-on: https://gerrit.libreoffice.org/14779 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
2015-03-06V801: Decreased performanceCaolán McNamara
Change-Id: I97c7977fdfea57b5d1c45ce0c5902b74cc719db9
2015-03-06Idle: Changed to new enum nameTobias Madl
Change-Id: Id3852abe9bc7bbe774331a7d691abd2a79ff59b4
2015-03-06Idle: Removed VCL_IDLE_PRIORITY_ prefix of enumTobias Madl
Change-Id: I12290bed7e4f298ab90393b8de6e2b6e7061e53f
2015-03-06idle includes and enum useJennifer Liebel
Change-Id: I8a280c54d81c7da74c9ab03ff3fc788e373ca4e4
2015-03-04V813: Decreased performanceCaolán McNamara
Change-Id: Ica2563d9e8da15e19eb38246d4de54a1fcb75655
2015-03-02TyposJulien Nabet
Change-Id: I70b8249827c799610a0466ebd5559169c4fac6ec
2015-03-02remove executable bit from rtf / xlsx filesMichael Stahl
Change-Id: I72d494d82b5f3c06d04c732165775caa4bc819d2
2015-03-02remove executable bit from c / h / cxx / hxx / l filesMichael Stahl
Change-Id: I90d7788208fb86c8aea36c4944ca11d881f11720
2015-03-02cppcheck: Variable is assigned a value that is never usedNoel Grandin
Change-Id: Iab6eaf148af6219a7c60af23c56ee088f6438a63
2015-02-27gbuild: CppunitTest: always use unittest configurationMichael Stahl
The sc_subsequent_filters_test was failing because of a lock file because it did not use the unittest configuration. Refactor gb_CppunitTest_use_configuration so it uses both the instdir and unittest configuration to prevent such errors. In case there ever is a test that does not work with the unittest configuration it should call gb_CppunitTest_use_instdir_configuration. Change-Id: Ibc00d42f8b6102d50d922f51173120798fa45c6e
2015-02-25remove NUMBERFORMAT_ constantsNoel Grandin
.. in favour of just using the underlying constants from css::util::NumberFormat Change-Id: I0c6b128b66c91b268f5ae300f9c17c7792df5e99
2015-02-24Typo: curently->currentlyJulien Nabet
Change-Id: I2362c2c7a1c637b02eeebcae8ee1e3c0fc2b2422
2015-02-23tdf#88835 Calc: General format: 2 digits in exponentLaurent Balland-Poirier
Create 4 new formats enums rtl_math_StringFormat: rtl_math_StringFormat_E1, rtl_math_StringFormat_E2, rtl_math_StringFormat_G1, rtl_math_StringFormat_G2 to 1 or 2 digits in exponent for scientific notation. Set General format to use rtl_math_StringFormat_E2. Set trendline equation in status bar to use rtl_math_StringFormat_E1 Change-Id: I41466a6d4ba808ba5b9b38ba252b37c6b4560f12 Reviewed-on: https://gerrit.libreoffice.org/14562 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2015-02-21TyposJulien Nabet
Change-Id: I8d6e9b20c478e649e35eca16f39692a9ce42b3c5
2015-02-19Missing constructorStephan Bergmann
...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
2015-02-19Clean upStephan Bergmann
Change-Id: Id91be8ec8a97d8fad398d798cd2a9b77773a39e2
2015-02-19add test for tdf#89454Markus Mohrhard
Change-Id: Iefb52f6fa77cf90955dbb47c1b9ca7ab699a43eb
2015-02-18TyposJulien Nabet
Change-Id: I845a85e1aad4a0708f2b43f7d94606b4b5513ee4
2015-02-18add test for missing chart area style fill import, tdf#89451Markus Mohrhard
Change-Id: I052838eaf4134a72feb067fc2a1355fabcafe11f
2015-02-18Missing dependencyStephan Bergmann
Change-Id: I4b66f7e549fe318f61b5ec8127ca073b2eb19ed3
2015-02-17tdf#39440 - cppcheck cleanlinessRadu Ioan
Fixed some cppcheck defects Change-Id: I25fd6aba9d76df98d20b9a1bb4c9d3c1bf6f84bb Reviewed-on: https://gerrit.libreoffice.org/14487 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2015-02-17update chart xshape reference filesMarkus Mohrhard
Change-Id: I499595df25f9a36eb1326cb5374db0541bd42ee4 Reviewed-on: https://gerrit.libreoffice.org/14514 Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2015-02-13Add an overlooked constructor to chartcore.component.Jan Holesovsky
com.sun.star.comp.chart2.report.XMLFilter was pointing to com.sun.star.comp.chart2.XMLFilter by mistake. Change-Id: Ia3c96cc98a4f81f2bb918200dc39eae1dbafdb58
2015-02-13loplugin:literaltoboolconversionStephan Bergmann
Change-Id: I077c8cf0a7f04d5eb926ec55136b25eb9db7a245
2015-02-12tdf#84514: don't hide grid along with checkbox if not neededKatarina Behrens
Regression from .ui migration, which unconditionally (and wrongly) hides the grid with radiobuttons. Do what the old code did - hide the whole frame iff the grid ain't visible. Change-Id: Ia9dc8b166f4031b4c07fbb1969908d314cc3456c
2015-02-12Blind attempt to fix the Windows build.Jan Holesovsky
Change-Id: Iac7b066e3af311f71bbcff7ac418fd3b5e94dff2
2015-02-12Use constructors for services from chartcore.component.Ursache Vladimir
Change-Id: I72227b45f305734060a669275044f6f9c8859bc5
2015-02-12But then again, no need to go via UNO here anyway (cf. previous commit)Stephan Bergmann
Change-Id: I2e5015b9c360fadb6747b5e2e0bd0a62b252312d
2015-02-12Add missing registration of GL3DBarChartType in g_entries_chart2_charttypesStephan Bergmann
...looks like it just got forgotten in 05efb605b36ea340762ef1583b3aea6a6b5cdddb "Add a new skeleton plotter for the GL3D bar chart." Change-Id: I54b7164d3702de6bdbcc3c3e21ea5569ada0336b
2015-02-10Added doc notes for classes and methods used for the scaling automatism.Marco Cecchetti
2015-02-10Added more doc notes for classes and methods used for pie charts.Marco Cecchetti
2015-02-09Fixed a too long comment line.Marco Cecchetti
2015-02-09chart2: fix buildMichael Stahl
Change-Id: I25a960bfdcd9938f68bf4f1535c7822959d95b71
2015-02-09Added doc notes for classes and methods used for pie charts.Marco Cecchetti
2015-02-08Typo: relaese->releaseJulien Nabet
Change-Id: I9e2e8f11c376fc808b12bc1db509babeac0ff7d8
2015-02-07loplugin:deletedspecialStephan Bergmann
Change-Id: Ifdbeea8d4e49ae38b843675758fcc29aee974bdf
2015-02-05Updated all precompiled headers.Ashod Nakashian
Change-Id: I955c8ac4dbe002d23531df7eb10fb4444d6b5157 Reviewed-on: https://gerrit.libreoffice.org/14292 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-02-02coverity#1267657 Logically dead codeCaolán McNamara
Change-Id: I50bb5d47c5f430818237308a691306dc097d245e