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
64b33886
Kaydet (Commit)
64b33886
authored
Haz 02, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:cstylecast: deal with those that are (technically) const_cast
Change-Id: Ie7129c66f236b93f505dad9ea672ab777cb380d1
üst
0686fcdb
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
vclxtoolkit.cxx
toolkit/source/awt/vclxtoolkit.cxx
+1
-1
controlmodelcontainerbase.cxx
toolkit/source/controls/controlmodelcontainerbase.cxx
+1
-1
dialogcontrol.cxx
toolkit/source/controls/dialogcontrol.cxx
+1
-1
stdtabcontroller.cxx
toolkit/source/controls/stdtabcontroller.cxx
+2
-2
No files found.
toolkit/source/awt/vclxtoolkit.cxx
Dosyayı görüntüle @
64b33886
...
@@ -1064,7 +1064,7 @@ vcl::Window* VCLXToolkit::ImplCreateWindow( VCLXWindow** ppNewComp,
...
@@ -1064,7 +1064,7 @@ vcl::Window* VCLXToolkit::ImplCreateWindow( VCLXWindow** ppNewComp,
rtl_getGlobalProcessId
(
reinterpret_cast
<
sal_uInt8
*>
(
processID
)
);
rtl_getGlobalProcessId
(
reinterpret_cast
<
sal_uInt8
*>
(
processID
)
);
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>
processIdSeq
(
(
sal_Int8
*
)
processID
,
16
);
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>
processIdSeq
(
processID
,
16
);
::
com
::
sun
::
star
::
uno
::
Any
anyHandle
=
xSystemDepParent
->
getWindowHandle
(
processIdSeq
,
SYSTEM_DEPENDENT_TYPE
);
::
com
::
sun
::
star
::
uno
::
Any
anyHandle
=
xSystemDepParent
->
getWindowHandle
(
processIdSeq
,
SYSTEM_DEPENDENT_TYPE
);
...
...
toolkit/source/controls/controlmodelcontainerbase.cxx
Dosyayı görüntüle @
64b33886
...
@@ -1684,7 +1684,7 @@ void ControlContainerBase::ImplModelPropertiesChanged( const Sequence< PropertyC
...
@@ -1684,7 +1684,7 @@ void ControlContainerBase::ImplModelPropertiesChanged( const Sequence< PropertyC
{
{
const
PropertyChangeEvent
&
rEvt
=
rEvents
.
getConstArray
()[
i
];
const
PropertyChangeEvent
&
rEvt
=
rEvents
.
getConstArray
()[
i
];
Reference
<
XControlModel
>
xModel
(
rEvt
.
Source
,
UNO_QUERY
);
Reference
<
XControlModel
>
xModel
(
rEvt
.
Source
,
UNO_QUERY
);
bool
bOwnModel
=
(
XControlModel
*
)
xModel
.
get
()
==
(
XControlModel
*
)
getModel
().
get
();
bool
bOwnModel
=
xModel
.
get
()
==
getModel
().
get
();
if
(
(
rEvt
.
PropertyName
==
s1
)
||
if
(
(
rEvt
.
PropertyName
==
s1
)
||
(
rEvt
.
PropertyName
==
s2
)
||
(
rEvt
.
PropertyName
==
s2
)
||
(
rEvt
.
PropertyName
==
s3
)
||
(
rEvt
.
PropertyName
==
s3
)
||
...
...
toolkit/source/controls/dialogcontrol.cxx
Dosyayı görüntüle @
64b33886
...
@@ -659,7 +659,7 @@ void UnoDialogControl::ImplModelPropertiesChanged( const Sequence< PropertyChang
...
@@ -659,7 +659,7 @@ void UnoDialogControl::ImplModelPropertiesChanged( const Sequence< PropertyChang
{
{
const
PropertyChangeEvent
&
rEvt
=
rEvents
.
getConstArray
()[
i
];
const
PropertyChangeEvent
&
rEvt
=
rEvents
.
getConstArray
()[
i
];
Reference
<
XControlModel
>
xModel
(
rEvt
.
Source
,
UNO_QUERY
);
Reference
<
XControlModel
>
xModel
(
rEvt
.
Source
,
UNO_QUERY
);
bool
bOwnModel
=
(
XControlModel
*
)
xModel
.
get
()
==
(
XControlModel
*
)
getModel
().
get
();
bool
bOwnModel
=
xModel
.
get
()
==
getModel
().
get
();
if
(
bOwnModel
&&
rEvt
.
PropertyName
==
"ImageURL"
)
if
(
bOwnModel
&&
rEvt
.
PropertyName
==
"ImageURL"
)
{
{
OUString
aImageURL
;
OUString
aImageURL
;
...
...
toolkit/source/controls/stdtabcontroller.cxx
Dosyayı görüntüle @
64b33886
...
@@ -258,7 +258,7 @@ void StdTabController::autoTabOrder( ) throw(RuntimeException, std::exception)
...
@@ -258,7 +258,7 @@ void StdTabController::autoTabOrder( ) throw(RuntimeException, std::exception)
size_t
n
;
size_t
n
;
for
(
n
=
0
;
n
<
nCtrls
;
n
++
)
for
(
n
=
0
;
n
<
nCtrls
;
n
++
)
{
{
XWindow
*
pC
=
(
XWindow
*
)
pComponents
[
n
].
get
();
XWindow
*
pC
=
pComponents
[
n
].
get
();
ComponentEntry
*
pE
=
new
ComponentEntry
;
ComponentEntry
*
pE
=
new
ComponentEntry
;
pE
->
pComponent
=
pC
;
pE
->
pComponent
=
pC
;
awt
::
Rectangle
aPosSize
=
pC
->
getPosSize
();
awt
::
Rectangle
aPosSize
=
pC
->
getPosSize
();
...
@@ -396,7 +396,7 @@ Reference< XControl > StdTabController::FindControl( Sequence< Reference< XCont
...
@@ -396,7 +396,7 @@ Reference< XControl > StdTabController::FindControl( Sequence< Reference< XCont
for
(
sal_Int32
n
=
0
;
n
<
nCtrls
;
n
++
)
for
(
sal_Int32
n
=
0
;
n
<
nCtrls
;
n
++
)
{
{
Reference
<
XControlModel
>
xModel
(
pCtrls
[
n
].
is
()
?
pCtrls
[
n
]
->
getModel
()
:
Reference
<
XControlModel
>
());
Reference
<
XControlModel
>
xModel
(
pCtrls
[
n
].
is
()
?
pCtrls
[
n
]
->
getModel
()
:
Reference
<
XControlModel
>
());
if
(
(
XControlModel
*
)
xModel
.
get
()
==
(
XControlModel
*
)
rxCtrlModel
.
get
()
)
if
(
xModel
.
get
()
==
rxCtrlModel
.
get
()
)
{
{
Reference
<
XControl
>
xCtrl
(
pCtrls
[
n
]
);
Reference
<
XControl
>
xCtrl
(
pCtrls
[
n
]
);
::
comphelper
::
removeElementAt
(
rCtrls
,
n
);
::
comphelper
::
removeElementAt
(
rCtrls
,
n
);
...
...
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