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
42dd5615
Kaydet (Commit)
42dd5615
authored
Nis 18, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Related: rhbz#1088625 PresenterPaintManager seen as NULL
Change-Id: I3b7ba51d48ebc5f9304f6125de0595d41d50ad4d
üst
8773d969
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
PresenterToolBar.cxx
sdext/source/presenter/PresenterToolBar.cxx
+13
-3
No files found.
sdext/source/presenter/PresenterToolBar.cxx
Dosyayı görüntüle @
42dd5615
...
...
@@ -457,7 +457,10 @@ void PresenterToolBar::InvalidateArea (
const
awt
::
Rectangle
&
rRepaintBox
,
const
bool
bSynchronous
)
{
mpPresenterController
->
GetPaintManager
()
->
Invalidate
(
::
boost
::
shared_ptr
<
PresenterPaintManager
>
xManager
(
mpPresenterController
->
GetPaintManager
());
if
(
!
xManager
)
return
;
xManager
->
Invalidate
(
mxWindow
,
rRepaintBox
,
bSynchronous
);
...
...
@@ -467,7 +470,11 @@ void PresenterToolBar::RequestLayout (void)
{
mbIsLayoutPending
=
true
;
mpPresenterController
->
GetPaintManager
()
->
Invalidate
(
mxWindow
);
::
boost
::
shared_ptr
<
PresenterPaintManager
>
xManager
(
mpPresenterController
->
GetPaintManager
());
if
(
!
xManager
)
return
;
xManager
->
Invalidate
(
mxWindow
);
}
geometry
::
RealSize2D
PresenterToolBar
::
GetMinimalSize
(
void
)
...
...
@@ -822,7 +829,10 @@ void PresenterToolBar::Layout (
}
// The whole window has to be repainted.
mpPresenterController
->
GetPaintManager
()
->
Invalidate
(
mxWindow
);
::
boost
::
shared_ptr
<
PresenterPaintManager
>
xManager
(
mpPresenterController
->
GetPaintManager
());
if
(
!
xManager
)
return
;
xManager
->
Invalidate
(
mxWindow
);
}
geometry
::
RealSize2D
PresenterToolBar
::
CalculatePartSize
(
...
...
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