diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-30 00:15:22 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:06 +0200 |
commit | 73d568408a150875b5c6046680f38e6db287c8fa (patch) | |
tree | 3c6d87ae03cc8193ef1d418d7a1ff7272bbbae53 /offapi/com/sun/star/sheet | |
parent | b84bffc86a913383bb3fa7f9f3d963d32681f778 (diff) |
*api: convert <listing> and @example
<listing> is called @code / @endcode in doxygen.
@example requires a file name in doxygen.
Also adapt various silly examples that use tools String in C++ or manual
syntax highlighting in Java etc.
Change-Id: I23cff1b688001f438526a6a1364cc5f754b504f7
Diffstat (limited to 'offapi/com/sun/star/sheet')
-rw-r--r-- | offapi/com/sun/star/sheet/SpreadsheetDrawPage.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/offapi/com/sun/star/sheet/SpreadsheetDrawPage.idl b/offapi/com/sun/star/sheet/SpreadsheetDrawPage.idl index ccaf4ddfc862..01fb918e373b 100644 --- a/offapi/com/sun/star/sheet/SpreadsheetDrawPage.idl +++ b/offapi/com/sun/star/sheet/SpreadsheetDrawPage.idl @@ -29,9 +29,9 @@ /** This abstract service is implemented by every page of a SpreadsheetDocument. - @example create and insert a couple of com::sun::star::drawing::LineShapes: + Example: create and insert a couple of com::sun::star::drawing::LineShapes: - <listing> + @code{.bas} xPage = xDoc.DrawPages(0) for x% = 0 to 200 xShape = xProv.createInstance( "com.sun.star.drawing.LineShape" ) @@ -41,7 +41,7 @@ xShape.Size = Size( 300-x%, 20 ) xPage.add( xShape ) next x% - </listing> + @endcode @since OOo 1.1.2 */ |