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
d91926de
Kaydet (Commit)
d91926de
authored
Ock 04, 2015
tarafından
Tomaž Vajngerl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tabview - put locals into anonymous namespace
Change-Id: I8af78740ce3c0533eeb5277f8065f3fd84cb8834
üst
7431bc26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
tabview.cxx
sc/source/ui/view/tabview.cxx
+12
-2
No files found.
sc/source/ui/view/tabview.cxx
Dosyayı görüntüle @
d91926de
...
...
@@ -1302,7 +1302,10 @@ void ScTabView::ScrollLines( long nDeltaX, long nDeltaY )
ScrollY
(
nDeltaY
,
WhichV
(
eWhich
));
}
static
SCROW
lcl_LastVisible
(
ScViewData
&
rViewData
)
namespace
{
SCROW
lcl_LastVisible
(
ScViewData
&
rViewData
)
{
// wenn am Dokumentende viele Zeilen ausgeblendet sind (welcher Trottel macht sowas?),
// soll dadurch nicht auf breite Zeilenkoepfe geschaltet werden
...
...
@@ -1317,6 +1320,8 @@ static SCROW lcl_LastVisible( ScViewData& rViewData )
return
nVis
;
}
}
// anonymous namespace
void
ScTabView
::
UpdateHeaderWidth
(
const
ScVSplitPos
*
pWhich
,
const
SCROW
*
pPosY
)
{
if
(
!
pRowBar
[
SC_SPLIT_BOTTOM
]
||
MAXROW
<
10000
)
...
...
@@ -1884,7 +1889,10 @@ Point ScTabView::GetMousePosPixel()
return
aPos
;
}
static
bool
lcl_MouseIsOverWin
(
const
Point
&
rScreenPosPixel
,
vcl
::
Window
*
pWin
)
namespace
{
bool
lcl_MouseIsOverWin
(
const
Point
&
rScreenPosPixel
,
vcl
::
Window
*
pWin
)
{
if
(
pWin
)
{
...
...
@@ -1900,6 +1908,8 @@ static bool lcl_MouseIsOverWin( const Point& rScreenPosPixel, vcl::Window* pWin
return
false
;
}
}
// anonymous namespace
void
ScTabView
::
SnapSplitPos
(
Point
&
rScreenPosPixel
)
{
bool
bOverWin
=
false
;
...
...
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