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
4a440511
Kaydet (Commit)
4a440511
authored
Şub 25, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clean up not needed ScTabViewShell LOK methods
Change-Id: Ic834d61cccdd422af96bd1b5933eb1a77e8efc16
üst
f6007719
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
26 deletions
+3
-26
tabvwsh.hxx
sc/source/ui/inc/tabvwsh.hxx
+0
-9
docuno.cxx
sc/source/ui/unoobj/docuno.cxx
+1
-1
gridwin4.cxx
sc/source/ui/view/gridwin4.cxx
+1
-1
tabvwsh4.cxx
sc/source/ui/view/tabvwsh4.cxx
+1
-3
tabvwshc.cxx
sc/source/ui/view/tabvwshc.cxx
+0
-12
No files found.
sc/source/ui/inc/tabvwsh.hxx
Dosyayı görüntüle @
4a440511
...
...
@@ -181,9 +181,6 @@ private:
OUString
maName
;
OUString
maScope
;
LibreOfficeKitCallback
mpLibreOfficeKitCallback
;
void
*
mpLibreOfficeKitData
;
private
:
void
Construct
(
sal_uInt8
nForceDesignMode
=
SC_FORCEMODE_NONE
);
...
...
@@ -416,12 +413,6 @@ public:
// #i123629#
bool
GetForceFocusOnCurCell
()
const
{
return
bForceFocusOnCurCell
;
}
void
SetForceFocusOnCurCell
(
bool
bFlag
)
{
bForceFocusOnCurCell
=
bFlag
;
}
/// The actual implementation of the vcl::ITiledRenderable::registerCallback() API.
void
registerLibreOfficeKitCallback
(
LibreOfficeKitCallback
pCallback
,
void
*
pLibreOfficeKitData
);
/// Invokes the registered callback, if there are any.
void
libreOfficeKitCallback
(
int
nType
,
const
char
*
pPayload
)
const
;
};
#endif
...
...
sc/source/ui/unoobj/docuno.cxx
Dosyayı görüntüle @
4a440511
...
...
@@ -515,7 +515,7 @@ Size ScModelObj::getDocumentSize()
void
ScModelObj
::
registerCallback
(
LibreOfficeKitCallback
pCallback
,
void
*
pData
)
{
SolarMutexGuard
aGuard
;
pDocShell
->
Get
BestViewShell
()
->
registerLibreOfficeKitCallback
(
pCallback
,
pData
);
pDocShell
->
Get
Document
().
GetDrawLayer
()
->
registerLibreOfficeKitCallback
(
pCallback
,
pData
);
}
void
ScModelObj
::
initializeForTiledRendering
()
...
...
sc/source/ui/view/gridwin4.cxx
Dosyayı görüntüle @
4a440511
...
...
@@ -994,7 +994,7 @@ void ScGridWindow::LogicInvalidate(const ::vcl::Region* pRegion)
sRectangle
=
"EMPTY"
;
else
sRectangle
=
pRegion
->
GetBoundRect
().
toString
();
pViewData
->
Get
ViewShell
()
->
libreOfficeKitCallback
(
LOK_CALLBACK_INVALIDATE_TILES
,
sRectangle
.
getStr
());
pViewData
->
Get
Document
()
->
GetDrawLayer
()
->
libreOfficeKitCallback
(
LOK_CALLBACK_INVALIDATE_TILES
,
sRectangle
.
getStr
());
}
void
ScGridWindow
::
CheckNeedsRepaint
()
...
...
sc/source/ui/view/tabvwsh4.cxx
Dosyayı görüntüle @
4a440511
...
...
@@ -1695,9 +1695,7 @@ ScTabViewShell::ScTabViewShell( SfxViewFrame* pViewFrame,
bForceFocusOnCurCell
(
false
),
nCurRefDlgId
(
0
),
pAccessibilityBroadcaster
(
NULL
),
mbInSwitch
(
false
),
mpLibreOfficeKitCallback
(
NULL
),
mpLibreOfficeKitData
(
NULL
)
mbInSwitch
(
false
)
{
const
ScAppOptions
&
rAppOpt
=
SC_MOD
()
->
GetAppOptions
();
...
...
sc/source/ui/view/tabvwshc.cxx
Dosyayı görüntüle @
4a440511
...
...
@@ -477,16 +477,4 @@ SfxModelessDialog* ScTabViewShell::CreateRefDialog(
return
pResult
;
}
void
ScTabViewShell
::
registerLibreOfficeKitCallback
(
LibreOfficeKitCallback
pCallback
,
void
*
pData
)
{
mpLibreOfficeKitCallback
=
pCallback
;
mpLibreOfficeKitData
=
pData
;
}
void
ScTabViewShell
::
libreOfficeKitCallback
(
int
nType
,
const
char
*
pPayload
)
const
{
if
(
mpLibreOfficeKitCallback
)
mpLibreOfficeKitCallback
(
nType
,
pPayload
,
mpLibreOfficeKitData
);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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