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
9e13404a
Kaydet (Commit)
9e13404a
authored
Mar 28, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clean up C-style casts from pointers to void
Change-Id: Ifab61517e0b2e721b85a3e2cc7d927198f1690c4
üst
13e45d6f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
accessibletabbarpagelist.cxx
accessibility/source/extended/accessibletabbarpagelist.cxx
+1
-1
vclxaccessiblebox.cxx
accessibility/source/standard/vclxaccessiblebox.cxx
+1
-1
vclxaccessibletoolbox.cxx
accessibility/source/standard/vclxaccessibletoolbox.cxx
+2
-2
No files found.
accessibility/source/extended/accessibletabbarpagelist.cxx
Dosyayı görüntüle @
9e13404a
...
...
@@ -326,7 +326,7 @@ namespace accessibility
break
;
case
VCLEVENT_TABBAR_PAGEMOVED
:
{
Pair
*
pPair
=
(
Pair
*
)
rVclWindowEvent
.
GetData
(
);
Pair
*
pPair
=
static_cast
<
Pair
*>
(
rVclWindowEvent
.
GetData
()
);
if
(
pPair
)
MoveChild
(
pPair
->
A
(),
pPair
->
B
()
);
}
...
...
accessibility/source/standard/vclxaccessiblebox.cxx
Dosyayı görüntüle @
9e13404a
...
...
@@ -69,7 +69,7 @@ void VCLXAccessibleBox::ProcessWindowChildEvent( const VclWindowEvent& rVclWindo
case
VCLEVENT_WINDOW_SHOW
:
case
VCLEVENT_WINDOW_HIDE
:
{
vcl
::
Window
*
pChildWindow
=
(
vcl
::
Window
*
)
rVclWindowEvent
.
GetData
(
);
vcl
::
Window
*
pChildWindow
=
static_cast
<
vcl
::
Window
*>
(
rVclWindowEvent
.
GetData
()
);
// Just compare to the combo box text field. All other children
// are identical to this object in which case this object will
// be removed in a short time.
...
...
accessibility/source/standard/vclxaccessibletoolbox.cxx
Dosyayı görüntüle @
9e13404a
...
...
@@ -464,7 +464,7 @@ void VCLXAccessibleToolBox::UpdateItemEnabled_Impl( sal_Int32 _nPos )
void
VCLXAccessibleToolBox
::
HandleSubToolBarEvent
(
const
VclWindowEvent
&
rVclWindowEvent
,
bool
_bShow
)
{
vcl
::
Window
*
pChildWindow
=
(
vcl
::
Window
*
)
rVclWindowEvent
.
GetData
(
);
vcl
::
Window
*
pChildWindow
=
static_cast
<
vcl
::
Window
*>
(
rVclWindowEvent
.
GetData
()
);
ToolBox
*
pToolBox
=
static_cast
<
ToolBox
*
>
(
GetWindow
()
);
if
(
pChildWindow
&&
pToolBox
...
...
@@ -777,7 +777,7 @@ Reference< XAccessible > SAL_CALL VCLXAccessibleToolBox::getAccessibleAtPoint( c
Reference
<
XAccessible
>
VCLXAccessibleToolBox
::
GetItemWindowAccessible
(
const
VclWindowEvent
&
rVclWindowEvent
)
{
Reference
<
XAccessible
>
xReturn
;
vcl
::
Window
*
pChildWindow
=
(
vcl
::
Window
*
)
rVclWindowEvent
.
GetData
(
);
vcl
::
Window
*
pChildWindow
=
static_cast
<
vcl
::
Window
*>
(
rVclWindowEvent
.
GetData
()
);
ToolBox
*
pToolBox
=
static_cast
<
ToolBox
*
>
(
GetWindow
()
);
if
(
pChildWindow
&&
pToolBox
)
{
...
...
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