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
4c6db362
Kaydet (Commit)
4c6db362
authored
Eki 22, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sc: implement vcl::ITiledRenderable::getWindow()
Change-Id: If50b4b5baea36e161675afd368fc54bdec01d9a5
üst
8522948b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
docuno.hxx
sc/inc/docuno.hxx
+3
-0
docuno.cxx
sc/source/ui/unoobj/docuno.cxx
+11
-0
No files found.
sc/inc/docuno.hxx
Dosyayı görüntüle @
4c6db362
...
...
@@ -412,6 +412,9 @@ public:
/// @see lok::Document::resetSelection().
virtual
void
resetSelection
()
override
;
/// @see vcl::ITiledRenderable::getWindow().
virtual
vcl
::
Window
*
getWindow
()
override
;
};
class
ScDrawPagesObj
:
public
cppu
::
WeakImplHelper
<
...
...
sc/source/ui/unoobj/docuno.cxx
Dosyayı görüntüle @
4c6db362
...
...
@@ -845,6 +845,17 @@ void ScModelObj::resetSelection()
pDocShell
->
GetDocument
().
GetDrawLayer
()
->
libreOfficeKitCallback
(
LOK_CALLBACK_TEXT_SELECTION
,
""
);
}
vcl
::
Window
*
ScModelObj
::
getWindow
()
{
SolarMutexGuard
aGuard
;
ScViewData
*
pViewData
=
ScDocShell
::
GetViewData
();
if
(
!
pViewData
)
return
0
;
return
pViewData
->
GetActiveWin
();
}
void
ScModelObj
::
initializeForTiledRendering
()
{
SolarMutexGuard
aGuard
;
...
...
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