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
c7ce08fb
Kaydet (Commit)
c7ce08fb
authored
Ock 23, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: missing consts
Change-Id: I052c8dfb668cbc31ba03d9b68bc21be58fce0e2a
üst
e57a6494
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
viewsh.hxx
sw/inc/viewsh.hxx
+2
-2
viewsh.cxx
sw/source/core/view/viewsh.cxx
+2
-2
No files found.
sw/inc/viewsh.hxx
Dosyayı görüntüle @
c7ce08fb
...
...
@@ -580,11 +580,11 @@ public:
/// The actual implementation of the vcl::ITiledRenderable::registerCallback() API for Writer.
void
registerLibreOfficeKitCallback
(
LibreOfficeKitCallback
pCallback
,
void
*
pLibreOfficeKitData
);
/// Invokes the registered callback, if there are any.
void
libreOfficeKitCallback
(
int
nType
,
const
char
*
pPayload
);
void
libreOfficeKitCallback
(
int
nType
,
const
char
*
pPayload
)
const
;
/// Set if we are doing tiled rendering.
void
setTiledRendering
(
bool
bTiledRendering
);
/// Are we doing tiled rendering?
bool
isTiledRendering
();
bool
isTiledRendering
()
const
;
};
...
...
sw/source/core/view/viewsh.cxx
Dosyayı görüntüle @
c7ce08fb
...
...
@@ -123,7 +123,7 @@ void SwViewShell::registerLibreOfficeKitCallback(LibreOfficeKitCallback pCallbac
mpLibreOfficeKitData
=
pData
;
}
void
SwViewShell
::
libreOfficeKitCallback
(
int
nType
,
const
char
*
pPayload
)
void
SwViewShell
::
libreOfficeKitCallback
(
int
nType
,
const
char
*
pPayload
)
const
{
if
(
mpLibreOfficeKitCallback
)
mpLibreOfficeKitCallback
(
nType
,
pPayload
,
mpLibreOfficeKitData
);
...
...
@@ -134,7 +134,7 @@ void SwViewShell::setTiledRendering(bool bTiledRendering)
mbTiledRendering
=
bTiledRendering
;
}
bool
SwViewShell
::
isTiledRendering
()
bool
SwViewShell
::
isTiledRendering
()
const
{
return
mbTiledRendering
;
}
...
...
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