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
b401a8d9
Kaydet (Commit)
b401a8d9
authored
Haz 08, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: If7c99c2ddb98c77bfecf42047fe8798423bb8c9b
üst
b997705c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
accessiblelistbox.cxx
accessibility/source/extended/accessiblelistbox.cxx
+1
-1
acc_factory.cxx
accessibility/source/helper/acc_factory.cxx
+4
-4
No files found.
accessibility/source/extended/accessiblelistbox.cxx
Dosyayı görüntüle @
b401a8d9
...
...
@@ -122,7 +122,7 @@ namespace accessibility
bool
bNeedFocus
=
false
;
if
(
pBox
)
{
vcl
::
Window
*
pParent
=
((
vcl
::
Window
*
)
pBox
)
->
GetParent
();
vcl
::
Window
*
pParent
=
static_cast
<
vcl
::
Window
*>
(
pBox
)
->
GetParent
();
if
(
pParent
&&
pParent
->
GetType
()
==
WINDOW_FLOATINGWINDOW
)
{
// MT: ImplGetAppSVData shouldn't be exported from VCL.
...
...
accessibility/source/helper/acc_factory.cxx
Dosyayı görüntüle @
b401a8d9
...
...
@@ -325,12 +325,12 @@ Reference< XAccessibleContext > AccessibleFactory::createAccessibleContext( VCLX
else
if
(
nType
==
WINDOW_STATUSBAR
)
{
xContext
=
(
XAccessibleContext
*
)
new
VCLXAccessibleStatusBar
(
_pXWindow
);
xContext
=
static_cast
<
XAccessibleContext
*>
(
new
VCLXAccessibleStatusBar
(
_pXWindow
)
);
}
else
if
(
nType
==
WINDOW_TABCONTROL
)
{
xContext
=
(
XAccessibleContext
*
)
new
VCLXAccessibleTabControl
(
_pXWindow
);
xContext
=
static_cast
<
XAccessibleContext
*>
(
new
VCLXAccessibleTabControl
(
_pXWindow
)
);
}
else
if
(
nType
==
WINDOW_TABPAGE
&&
pWindow
->
GetAccessibleParentWindow
()
&&
pWindow
->
GetAccessibleParentWindow
()
->
GetType
()
==
WINDOW_TABCONTROL
)
...
...
@@ -362,11 +362,11 @@ Reference< XAccessibleContext > AccessibleFactory::createAccessibleContext( VCLX
else
if
(
(
nType
==
WINDOW_HELPTEXTWINDOW
)
||
(
nType
==
WINDOW_FIXEDLINE
)
)
{
xContext
=
(
XAccessibleContext
*
)
new
VCLXAccessibleFixedText
(
_pXWindow
);
xContext
=
static_cast
<
XAccessibleContext
*>
(
new
VCLXAccessibleFixedText
(
_pXWindow
)
);
}
else
{
xContext
=
(
XAccessibleContext
*
)
new
VCLXAccessibleComponent
(
_pXWindow
);
xContext
=
static_cast
<
XAccessibleContext
*>
(
new
VCLXAccessibleComponent
(
_pXWindow
)
);
}
}
return
xContext
;
...
...
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