summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-03-13 09:58:23 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-03-16 09:38:10 +0100
commitfa53289f24d09d963ffec9ee9f28ca1ee8f42a1f (patch)
tree4dd9bda916b6f3f6d377d377867f6dd9f9bc3aab /sw/inc
parent6e8da9bc4eac3eef3f68b8637ff4ef306de2e962 (diff)
SwXTextDocument: add missing @see for 3 vcl::ITiledRenderable methods
Change-Id: I8bd5079c1b493e6b72ee0d71445e9aaeac76bb3d
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/unotxdoc.hxx12
1 files changed, 4 insertions, 8 deletions
diff --git a/sw/inc/unotxdoc.hxx b/sw/inc/unotxdoc.hxx
index 778d073837ea..720256288216 100644
--- a/sw/inc/unotxdoc.hxx
+++ b/sw/inc/unotxdoc.hxx
@@ -395,7 +395,7 @@ public:
// ::com::sun::star::util::XCloneable
virtual ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable > SAL_CALL createClone( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
- // ITiledRenderable
+ /// @see vcl::ITiledRenderable::paintTile().
virtual void paintTile( VirtualDevice &rDevice,
int nOutputWidth,
int nOutputHeight,
@@ -403,15 +403,11 @@ public:
int nTilePosY,
long nTileWidth,
long nTileHeight ) SAL_OVERRIDE;
+ /// @see vcl::ITiledRenderable::getDocumentSize().
virtual Size getDocumentSize() SAL_OVERRIDE;
+ /// @see vcl::ITiledRenderable::initializeForTiledRendering().
virtual void initializeForTiledRendering() SAL_OVERRIDE;
- /**
- * Registers a callback that will be invoked whenever the tiled renderer
- * wants to notify the client about an event.
- *
- * @param pCallBack is the callback function
- * @param pData is private data of the client that will be sent back when the callback is invoked
- */
+ /// @see vcl::ITiledRenderable::registerCallback().
virtual void registerCallback(LibreOfficeKitCallback pCallback, void* pData) SAL_OVERRIDE;
/// @see vcl::ITiledRenderable::postMouseEvent().
virtual void postMouseEvent(int nType, int nX, int nY, int nCount) SAL_OVERRIDE;