[Libreoffice-commits] core.git: Branch 'feature/tiled-editing' - sw/inc

Miklos Vajna vmiklos at collabora.co.uk
Fri Mar 13 02:06:39 PDT 2015


 sw/inc/unotxdoc.hxx |   12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

New commits:
commit a1706098b27063549d386d16caaec9cb070b3233
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Fri Mar 13 09:58:23 2015 +0100

    SwXTextDocument: add missing @see for 3 vcl::ITiledRenderable methods
    
    Change-Id: I8bd5079c1b493e6b72ee0d71445e9aaeac76bb3d

diff --git a/sw/inc/unotxdoc.hxx b/sw/inc/unotxdoc.hxx
index 778d073..72025628 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;


More information about the Libreoffice-commits mailing list