diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-30 14:12:14 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:06 +0200 |
commit | ddba7d155d07b9018a9f5bf051b6faa1bdac022b (patch) | |
tree | 9b28c72c50b615097448855dccb99957fe8e35dc /offapi/com/sun/star/chart2 | |
parent | 73d568408a150875b5c6046680f38e6db287c8fa (diff) |
*api: convert all unsupported html tags
Only useful ones appear to be <tbody> and <thead> which doxygen doesn't
support but we only use those in 3 places so who cares.
Change-Id: I374f7d208873a8436fe76e0f800ce18df5b188b3
Diffstat (limited to 'offapi/com/sun/star/chart2')
-rw-r--r-- | offapi/com/sun/star/chart2/Symbol.idl | 6 | ||||
-rw-r--r-- | offapi/com/sun/star/chart2/XRegressionCurveCalculator.idl | 16 |
2 files changed, 9 insertions, 13 deletions
diff --git a/offapi/com/sun/star/chart2/Symbol.idl b/offapi/com/sun/star/chart2/Symbol.idl index 3d9c19f3aeba..1149cb3a3a5f 100644 --- a/offapi/com/sun/star/chart2/Symbol.idl +++ b/offapi/com/sun/star/chart2/Symbol.idl @@ -51,11 +51,8 @@ struct Symbol <p>The default implementation for example currently uses 8 different standard symbols that are matched to the numbers 0 to 7. - <table border=1 rules="groups"> - <thead> + <table border=1> <tr><th> value StandardSymbol </th><th> visible Symbol </th></tr> - </thead> - <tbody> <tr><td><code>0</code></td><td>square</td></tr> <tr><td><code>1</code></td><td>diamond</td></tr> <tr><td><code>2</code></td><td>down arrow</td></tr> @@ -64,7 +61,6 @@ struct Symbol <tr><td><code>5</code></td><td>left arrow</td></tr> <tr><td><code>6</code></td><td>bowtie</td></tr> <tr><td><code>7</code></td><td>sandglass</td></tr> - </tbody> </table> </p> diff --git a/offapi/com/sun/star/chart2/XRegressionCurveCalculator.idl b/offapi/com/sun/star/chart2/XRegressionCurveCalculator.idl index 112df63e4494..f7c22ce57eaa 100644 --- a/offapi/com/sun/star/chart2/XRegressionCurveCalculator.idl +++ b/offapi/com/sun/star/chart2/XRegressionCurveCalculator.idl @@ -37,7 +37,7 @@ module chart2 interface XRegressionCurveCalculator : com::sun::star::uno::XInterface { /** recalculates the parameters of the internal regression curve according to - the <it>x</it>- and <it>y</it>-values given. + the <i>x</i>- and <i>y</i>-values given. @param aXValues All x-values that represent the measurement points on @@ -51,7 +51,7 @@ interface XRegressionCurveCalculator : com::sun::star::uno::XInterface [in] sequence< double > aYValues ); - /** calculates the value of the regression curve for <it>x</it>. + /** calculates the value of the regression curve for <i>x</i>. @param x The abscissa value for which the value of the regression @@ -59,11 +59,11 @@ interface XRegressionCurveCalculator : com::sun::star::uno::XInterface the domain of the regression function are valid. @return - If <it>x</it> is element of the domain of the regression + If <i>x</i> is element of the domain of the regression curve function, the result is its value. @throws com::sun::star::lang::IllegalArgumentException - If <it>x</it> is not part of the domain of the regression + If <i>x</i> is not part of the domain of the regression function. */ double getCurveValue( [in] double x ) @@ -102,11 +102,11 @@ interface XRegressionCurveCalculator : com::sun::star::uno::XInterface raises( com::sun::star::lang::IllegalArgumentException ); /** Returns the value of the correlation coefficient for the given - regression. This value is often denoted as <it>r</it> or - <it>R</it>. + regression. This value is often denoted as <i>r</i> or + <i>R</i>. - <p>The value of <it>r</it> is signed. Often - <it>r</it><sup>2</sup> is used instead of <it>r</it> to denote + <p>The value of <i>r</i> is signed. Often + <i>r</i><sup>2</sup> is used instead of <i>r</i> to denote a regression curve's accuracy.</p> @return |