summaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2019-03-28 20:12:35 +0000
committerJens Carl <j.carl43@gmx.de>2019-03-28 22:18:48 +0100
commitee92196179d7697a514e55774be09cbf60f2c466 (patch)
treeededf1437bc1530e6313005fc90da3ad8b4c7df1 /include/test
parentd8064c1f50fca388d2701a9702be694330ff0bc5 (diff)
Fix header guard and improve comments
Change-Id: I7ddef04a88381e3e58a6604de35694dea658c81d Reviewed-on: https://gerrit.libreoffice.org/69900 Tested-by: Jenkins Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'include/test')
-rw-r--r--include/test/helper/shape.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/test/helper/shape.hxx b/include/test/helper/shape.hxx
index 9f8bd9e8b73b..e4322bec1357 100644
--- a/include/test/helper/shape.hxx
+++ b/include/test/helper/shape.hxx
@@ -7,8 +7,8 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
-#ifndef INCLUDED_TEST_HELPER_SHAPEFACTORY_HXX
-#define INCLUDED_TEST_HELPER_SHAPEFACTORY_HXX
+#ifndef INCLUDED_TEST_HELPER_SHAPE_HXX
+#define INCLUDED_TEST_HELPER_SHAPE_HXX
#include <rtl/string.hxx>
#include <sal/config.h>
@@ -33,7 +33,7 @@ namespace shape
* @param nY The y-position of the shape.
* @param nHeight The height of the shape.
* @param nWidth The width of the shape.
- * @return The create XShape.
+ * @return The created XShape.
*/
css::uno::Reference<css::drawing::XShape>
OOO_DLLPUBLIC_TEST createEllipse(const css::uno::Reference<css::lang::XComponent>& r_xComponent,
@@ -47,7 +47,7 @@ css::uno::Reference<css::drawing::XShape>
* @param nY The y-position of the shape.
* @param nHeight The height of the shape.
* @param nWidth The width of the shape.
- * @return The create XShape.
+ * @return The created XShape.
*/
css::uno::Reference<css::drawing::XShape>
OOO_DLLPUBLIC_TEST createLine(const css::uno::Reference<css::lang::XComponent>& r_xComponent,
@@ -61,7 +61,7 @@ css::uno::Reference<css::drawing::XShape>
* @param nY The y-position of the shape.
* @param nHeight The height of the shape.
* @param nWidth The width of the shape.
- * @return The create XShape.
+ * @return The created XShape.
*/
css::uno::Reference<css::drawing::XShape> OOO_DLLPUBLIC_TEST
createRectangle(const css::uno::Reference<css::lang::XComponent>& r_xComponent, const sal_Int32 nX,
@@ -75,7 +75,7 @@ createRectangle(const css::uno::Reference<css::lang::XComponent>& r_xComponent,
* @param nY The y-position of the shape.
* @param nHeight The height of the shape.
* @param nWidth The width of the shape.
- * @return The create XShape.
+ * @return The created XShape.
*/
css::uno::Reference<css::drawing::XShape>
OOO_DLLPUBLIC_TEST createShape(const css::uno::Reference<css::lang::XComponent>& r_xComponent,
@@ -86,6 +86,6 @@ css::uno::Reference<css::drawing::XShape>
} // namespace helper
} // namespace apitest
-#endif // INCLUDED_TEST_HELPER_SHAPEFACTORY_HXX
+#endif // INCLUDED_TEST_HELPER_SHAPE_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */