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
d22d2bb3
Kaydet (Commit)
d22d2bb3
authored
May 13, 2013
tarafından
Pavel Janík
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Retype values properly to prevent compiler warnings.
üst
a97c4ca2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
FocusManager.cxx
sfx2/source/sidebar/FocusManager.cxx
+3
-3
No files found.
sfx2/source/sidebar/FocusManager.cxx
Dosyayı görüntüle @
d22d2bb3
...
...
@@ -282,7 +282,7 @@ bool FocusManager::IsDeckTitleVisible (void) const
void
FocusManager
::
FocusPanel
(
const
sal_Int32
nPanelIndex
)
{
if
(
nPanelIndex
<
0
||
nPanelIndex
>=
maPanels
.
size
(
))
if
(
nPanelIndex
<
0
||
nPanelIndex
>=
static_cast
<
sal_Int32
>
(
maPanels
.
size
()
))
return
;
Panel
&
rPanel
(
*
maPanels
[
nPanelIndex
]);
TitleBar
*
pTitleBar
=
rPanel
.
GetTitleBar
();
...
...
@@ -496,7 +496,7 @@ void FocusManager::HandleKeyEvent (
case
PC_PanelToolBox
:
case
PC_PanelContent
:
// Go to next panel.
if
(
aLocation
.
mnIndex
<
maPanels
.
size
(
)
-
1
)
if
(
aLocation
.
mnIndex
<
static_cast
<
sal_Int32
>
(
maPanels
.
size
()
)
-
1
)
FocusPanel
(
aLocation
.
mnIndex
+
1
);
else
FocusButton
(
0
);
...
...
@@ -510,7 +510,7 @@ void FocusManager::HandleKeyEvent (
case
PC_TabBar
:
// Go to next tab bar item.
if
(
aLocation
.
mnIndex
<
maButtons
.
size
(
)
-
1
)
if
(
aLocation
.
mnIndex
<
static_cast
<
sal_Int32
>
(
maButtons
.
size
()
)
-
1
)
FocusButton
(
aLocation
.
mnIndex
+
1
);
else
if
(
IsDeckTitleVisible
())
FocusDeckTitle
();
...
...
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