Update @since to 1.3

Let's see if we can squeeze it in
This commit is contained in:
Albert Astals Cid 2017-11-06 06:10:13 +01:00 committed by Albert Astals Cid
parent ae4f0671bf
commit 099d3cfcc8
4 changed files with 9 additions and 9 deletions

View file

@ -741,7 +741,7 @@ class OKULARCORE_EXPORT Document : public QObject
* Returns whether the generator supports hot-swapping the current file
* with another identical file
*
* @since 0.20 (KDE 4.14)
* @since 1.3
*/
bool canSwapBackingFile() const;
@ -755,7 +755,7 @@ class OKULARCORE_EXPORT Document : public QObject
* saveChanges first to write changes to a file and then swapBackingFile
* to switch to the new location.
*
* @since 0.20 (KDE 4.14)
* @since 1.3
*/
bool swapBackingFile( const QString &newFileName, const QUrl & url );
@ -768,7 +768,7 @@ class OKULARCORE_EXPORT Document : public QObject
* saveDocumentArchive first to write changes to a file and then
* swapBackingFileArchive to switch to the new location.
*
* @since 0.20 (KDE 4.14)
* @since 1.3
*/
bool swapBackingFileArchive( const QString &newFileName, const QUrl & url );
@ -862,7 +862,7 @@ class OKULARCORE_EXPORT Document : public QObject
*
* @warning This function only works if the current file is a document archive
*
* @since 0.14 (KDE 4.20)
* @since 1.3
*/
bool extractArchivedFile( const QString &destFileName );
@ -907,7 +907,7 @@ class OKULARCORE_EXPORT Document : public QObject
* okular versions did by default).
* If this flag is set, then annotations and forms cannot be edited.
*
* @since 0.21
* @since 1.3
*/
bool isDocdataMigrationNeeded() const;
@ -916,7 +916,7 @@ class OKULARCORE_EXPORT Document : public QObject
* isDocdataMigrationNeeded() was true and you've just saved them to an
* external file.
*
* @since 0.21
* @since 1.3
*/
void docdataMigrationDone();

View file

@ -209,7 +209,7 @@ class OKULARCORE_EXPORT Generator : public QObject
PrintPostscript, ///< Whether the Generator supports postscript-based file printing.
PrintToFile, ///< Whether the Generator supports export to PDF & PS through the Print Dialog
TiledRendering, ///< Whether the Generator can render tiles @since 0.16 (KDE 4.10)
SwapBackingFile ///< Whether the Generator can hot-swap the file it's reading from @since 0.20 (KDE 4.14)
SwapBackingFile ///< Whether the Generator can hot-swap the file it's reading from @since 1.3
};
/**

View file

@ -54,7 +54,7 @@ class OKULARCORE_EXPORT DocumentObserver
enum SetupFlags {
DocumentChanged = 1, ///< The document is a new document.
NewLayoutForPages = 2, ///< All the pages have
UrlChanged = 4 ///< The URL has changed @since 0.20 (KDE 4.14)
UrlChanged = 4 ///< The URL has changed @since 1.3
};
/**

View file

@ -251,7 +251,7 @@ class OKULARCORE_EXPORT Page
/**
* Returns the annotation with the given unique name.
* @since TODO
* @since 1.3
*/
Annotation * annotation( const QString & uniqueName ) const;