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
4ec7f1d7
Kaydet (Commit)
4ec7f1d7
authored
Tem 08, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whatever that "SDL-Bug" was supposed to be, it is clearly irrelevant by now
Change-Id: Iaa3482e0895b1ccb1f1743893d64ae1941f3f396
üst
1290ec32
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
10 deletions
+5
-10
introspection.cxx
stoc/source/inspect/introspection.cxx
+5
-10
No files found.
stoc/source/inspect/introspection.cxx
Dosyayı görüntüle @
4ec7f1d7
...
...
@@ -2045,14 +2045,12 @@ css::uno::Reference<css::beans::XIntrospectionAccess> Implementation::inspect(
// Name holen und auswerten
OUString
aMethName2
=
rxMethod_k
->
getName
();
OUString
aStartStr2
=
aMethName2
.
copy
(
0
,
3
);
// ACHTUNG: Wegen SDL-Bug NICHT != bei OUString verwenden !!!
if
(
!
(
aStartStr2
==
"set"
)
)
if
(
aStartStr2
!=
"set"
)
continue
;
// Ist es denn der gleiche Name?
OUString
aPropName2
=
aMethName2
.
copy
(
3
);
// ACHTUNG: Wegen SDL-Bug NICHT != bei OUString verwenden !!!
if
(
!
(
aPropName
==
aPropName2
)
)
if
(
aPropName
!=
aPropName2
)
continue
;
// set-Methode muss void returnen
...
...
@@ -2104,8 +2102,7 @@ css::uno::Reference<css::beans::XIntrospectionAccess> Implementation::inspect(
OUString
aEndStr
=
aMethName
.
copy
(
nCopyLen
>
0
?
nCopyLen
:
0
);
// Endet das Teil auf Listener?
// ACHTUNG: Wegen SDL-Bug NICHT != bei OUString verwenden !!!
if
(
!
(
aEndStr
==
aListenerStr
)
)
if
(
aEndStr
!=
aListenerStr
)
continue
;
// Welcher Listener?
...
...
@@ -2133,8 +2130,7 @@ css::uno::Reference<css::beans::XIntrospectionAccess> Implementation::inspect(
sal_Int32
nCopyLen2
=
(
nNameLen
<
6
)
?
nNameLen
:
6
;
OUString
aStartStr2
=
aMethName2
.
copy
(
0
,
nCopyLen2
);
OUString
aRemoveStr
(
"remove"
);
// ACHTUNG: Wegen SDL-Bug NICHT != bei OUString verwenden !!!
if
(
!
(
aStartStr2
==
aRemoveStr
)
)
if
(
aStartStr2
!=
aRemoveStr
)
continue
;
// Ist es denn der gleiche Listener?
...
...
@@ -2142,8 +2138,7 @@ css::uno::Reference<css::beans::XIntrospectionAccess> Implementation::inspect(
continue
;
OUString
aListenerName2
=
aMethName2
.
copy
(
6
,
aMethName2
.
getLength
()
-
aRemoveStr
.
getLength
()
-
aListenerStr
.
getLength
()
);
// ACHTUNG: Wegen SDL-Bug NICHT != bei OUString verwenden !!!
if
(
!
(
aListenerName
==
aListenerName2
)
)
if
(
aListenerName
!=
aListenerName2
)
continue
;
// TODO: Hier koennten noch genauere Pruefungen vorgenommen werden
...
...
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