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
fddb4938
Kaydet (Commit)
fddb4938
authored
Agu 11, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin: defaultparams
Change-Id: Ifc9fc93b0630674fa1f4ef78c3a2231855dc1db3
üst
6a7de42a
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
12 deletions
+12
-12
AccessibleBrowseBoxHeaderBar.cxx
...sibility/source/extended/AccessibleBrowseBoxHeaderBar.cxx
+1
-1
AccessibleBrowseBoxTableBase.cxx
...sibility/source/extended/AccessibleBrowseBoxTableBase.cxx
+1
-1
accessiblelistbox.cxx
accessibility/source/extended/accessiblelistbox.cxx
+2
-2
accessiblelistboxentry.cxx
accessibility/source/extended/accessiblelistboxentry.cxx
+2
-2
vclxaccessiblelist.cxx
accessibility/source/standard/vclxaccessiblelist.cxx
+2
-2
vclxaccessibleradiobutton.cxx
accessibility/source/standard/vclxaccessibleradiobutton.cxx
+1
-1
mediacontrol.cxx
avmedia/source/framework/mediacontrol.cxx
+3
-3
No files found.
accessibility/source/extended/AccessibleBrowseBoxHeaderBar.cxx
Dosyayı görüntüle @
fddb4938
...
...
@@ -333,7 +333,7 @@ Rectangle AccessibleBrowseBoxHeaderBar::implGetBoundingBox()
Rectangle
AccessibleBrowseBoxHeaderBar
::
implGetBoundingBoxOnScreen
()
{
return
mpBrowseBox
->
calcHeaderRect
(
isColumnBar
()
,
true
);
return
mpBrowseBox
->
calcHeaderRect
(
isColumnBar
());
}
sal_Int32
AccessibleBrowseBoxHeaderBar
::
implGetRowCount
()
const
...
...
accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx
Dosyayı görüntüle @
fddb4938
...
...
@@ -267,7 +267,7 @@ bool AccessibleBrowseBoxTableBase::implIsColumnSelected( sal_Int32 nColumn ) con
void
AccessibleBrowseBoxTableBase
::
implSelectRow
(
sal_Int32
nRow
,
bool
bSelect
)
{
mpBrowseBox
->
SelectRow
(
nRow
,
bSelect
,
true
);
mpBrowseBox
->
SelectRow
(
nRow
,
bSelect
);
}
void
AccessibleBrowseBoxTableBase
::
implSelectColumn
(
sal_Int32
nColumnPos
,
bool
bSelect
)
...
...
accessibility/source/extended/accessiblelistbox.cxx
Dosyayı görüntüle @
fddb4938
...
...
@@ -477,7 +477,7 @@ namespace accessibility
if
(
!
pEntry
)
throw
IndexOutOfBoundsException
();
getListBox
()
->
Select
(
pEntry
,
true
);
getListBox
()
->
Select
(
pEntry
);
}
sal_Bool
SAL_CALL
AccessibleListBox
::
isAccessibleChildSelected
(
sal_Int32
nChildIndex
)
throw
(
IndexOutOfBoundsException
,
RuntimeException
,
std
::
exception
)
...
...
@@ -519,7 +519,7 @@ namespace accessibility
{
SvTreeListEntry
*
pEntry
=
getListBox
()
->
GetEntry
(
i
);
if
(
!
getListBox
()
->
IsSelected
(
pEntry
)
)
getListBox
()
->
Select
(
pEntry
,
true
);
getListBox
()
->
Select
(
pEntry
);
}
}
...
...
accessibility/source/extended/accessiblelistboxentry.cxx
Dosyayı görüntüle @
fddb4938
...
...
@@ -873,7 +873,7 @@ namespace accessibility
if
(
!
pEntry
)
throw
IndexOutOfBoundsException
();
getListBox
()
->
Select
(
pEntry
,
true
);
getListBox
()
->
Select
(
pEntry
);
}
sal_Bool
SAL_CALL
AccessibleListBoxEntry
::
isAccessibleChildSelected
(
sal_Int32
nChildIndex
)
throw
(
IndexOutOfBoundsException
,
RuntimeException
,
std
::
exception
)
...
...
@@ -925,7 +925,7 @@ namespace accessibility
{
SvTreeListEntry
*
pEntry
=
getListBox
()
->
GetEntry
(
pParent
,
i
);
if
(
!
getListBox
()
->
IsSelected
(
pEntry
)
)
getListBox
()
->
Select
(
pEntry
,
true
);
getListBox
()
->
Select
(
pEntry
);
}
}
...
...
accessibility/source/standard/vclxaccessiblelist.cxx
Dosyayı görüntüle @
fddb4938
...
...
@@ -791,7 +791,7 @@ void SAL_CALL VCLXAccessibleList::selectAccessibleChild( sal_Int32 nChildIndex )
{
checkSelection_Impl
(
nChildIndex
,
*
m_pListBoxHelper
,
false
);
m_pListBoxHelper
->
SelectEntryPos
(
(
sal_uInt16
)
nChildIndex
,
true
);
m_pListBoxHelper
->
SelectEntryPos
(
(
sal_uInt16
)
nChildIndex
);
// call the select handler, don't handle events in this time
m_bDisableProcessEvent
=
true
;
m_pListBoxHelper
->
Select
();
...
...
@@ -850,7 +850,7 @@ void SAL_CALL VCLXAccessibleList::selectAllAccessibleChildren( ) throw (Runtime
{
sal_uInt16
nCount
=
m_pListBoxHelper
->
GetEntryCount
();
for
(
sal_uInt16
i
=
0
;
i
<
nCount
;
++
i
)
m_pListBoxHelper
->
SelectEntryPos
(
i
,
true
);
m_pListBoxHelper
->
SelectEntryPos
(
i
);
// call the select handler, don't handle events in this time
m_bDisableProcessEvent
=
true
;
m_pListBoxHelper
->
Select
();
...
...
accessibility/source/standard/vclxaccessibleradiobutton.cxx
Dosyayı görüntüle @
fddb4938
...
...
@@ -93,7 +93,7 @@ void VCLXAccessibleRadioButton::FillAccessibleRelationSet( utl::AccessibleRelati
VclPtr
<
RadioButton
>
pRadioButton
=
GetAsDynamic
<
RadioButton
>
();
if
(
pRadioButton
)
{
::
std
::
vector
<
VclPtr
<
RadioButton
>
>
aGroup
(
pRadioButton
->
GetRadioButtonGroup
(
true
));
::
std
::
vector
<
VclPtr
<
RadioButton
>
>
aGroup
(
pRadioButton
->
GetRadioButtonGroup
());
if
(
!
aGroup
.
empty
())
{
sal_Int32
i
=
0
;
...
...
avmedia/source/framework/mediacontrol.cxx
Dosyayı görüntüle @
fddb4938
...
...
@@ -320,21 +320,21 @@ void MediaControl::implUpdateToolboxes()
if
(
MediaState
::
Play
==
maItem
.
getState
()
)
{
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_PLAY
,
true
);
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_PLAY
);
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_PAUSE
,
false
);
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_STOP
,
false
);
}
else
if
(
maItem
.
getTime
()
>
0.0
&&
(
maItem
.
getTime
()
<
maItem
.
getDuration
()
)
)
{
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_PLAY
,
false
);
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_PAUSE
,
true
);
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_PAUSE
);
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_STOP
,
false
);
}
else
{
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_PLAY
,
false
);
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_PAUSE
,
false
);
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_STOP
,
true
);
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_STOP
);
}
maPlayToolBox
->
CheckItem
(
AVMEDIA_TOOLBOXITEM_LOOP
,
maItem
.
isLoop
()
);
...
...
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