Arrgh, forgot to commit this last time :/

svn path=/trunk/playground/graphics/okular/; revision=625249
remotes/origin/KDE/4.0
Tobias Koenig 19 years ago
parent e71a608054
commit 460f972d19
  1. 5
      core/textdocumentgenerator.cpp
  2. 2
      core/textdocumentgenerator.h

@ -42,6 +42,11 @@ TextDocumentConverter::~TextDocumentConverter()
delete d;
}
DocumentViewport TextDocumentConverter::calculateViewport( QTextDocument *document, const QTextBlock &block )
{
return Utils::calculateViewport( document, block );
}
/**
* Generic Generator Implementation
*/

@ -72,7 +72,7 @@ class OKULAR_EXPORT TextDocumentConverter : public QObject
* Note: This method should be called at the end of the convertion, because it
* triggers QTextDocument to do the layout calculation.
*/
DocumentViewport calculateViewport( const QTextBlock &block );
DocumentViewport calculateViewport( QTextDocument *document, const QTextBlock &block );
private:
class Private;

Loading…
Cancel
Save