From 20ecee1b36931fea1effdd3cdf91ecd9b5915ea3 Mon Sep 17 00:00:00 2001 From: Fabio D'Urso Date: Sat, 10 Nov 2012 15:50:12 +0100 Subject: [PATCH] Added @since markers in generator.h --- core/generator.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/core/generator.h b/core/generator.h index 325211954..7e9aa1d29 100644 --- a/core/generator.h +++ b/core/generator.h @@ -251,6 +251,8 @@ class OKULAR_EXPORT Generator : public QObject /** * Returns whether the generator can render tiles. + * + * @since 0.16 (KDE 4.10) */ virtual bool supportsTiles() const; @@ -587,22 +589,30 @@ class OKULAR_EXPORT PixmapRequest /** * Sets whether the generator should render only the given normalized * rect or the entire page + * + * @since 0.16 (KDE 4.10) */ void setTile( bool tile ); /** * Returns whether the generator should render just the region given by * normalizedRect() or the entire page. + * + * @since 0.16 (KDE 4.10) */ bool isTile() const; /** * Sets the region of the page to request. + * + * @since 0.16 (KDE 4.10) */ void setNormalizedRect( const NormalizedRect &rect ); /** * Returns the normalized region of the page to request. + * + * @since 0.16 (KDE 4.10) */ const NormalizedRect normalizedRect() const;