Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
64235bc9
Kaydet (Commit)
64235bc9
authored
Ock 26, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
lokdocview: fix for missing gtk_table_get_size()
Change-Id: Ib3f9849c2f28375a7e8bcd6575a6c3da0860d4fb
üst
1854a923
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
lokdocview.c
libreofficekit/source/gtk/lokdocview.c
+4
-0
No files found.
libreofficekit/source/gtk/lokdocview.c
Dosyayı görüntüle @
64235bc9
...
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment