diff options
-rw-r--r-- | libreofficekit/source/gtk/lokdocview.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libreofficekit/source/gtk/lokdocview.c b/libreofficekit/source/gtk/lokdocview.c index 726456316cf6..372fa9d8935f 100644 --- a/libreofficekit/source/gtk/lokdocview.c +++ b/libreofficekit/source/gtk/lokdocview.c @@ -163,10 +163,14 @@ void renderDocument(LOKDocView* pDocView, GdkRectangle* pPartial) // Same as nRows / nColumns, but from the previous renderDocument() call. guint nOldRows, nOldColumns; +#if GTK_CHECK_VERSION(2,22,0) gtk_table_get_size(GTK_TABLE(pDocView->pTable), &nOldRows, &nOldColumns); if (nOldRows != nRows || nOldColumns != nColumns) // Can't do partial rendering, document size changed. pPartial = NULL; +#else + pPartial = NULL; +#endif } if (!pPartial) { |