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
c38678e1
Kaydet (Commit)
c38678e1
authored
May 22, 2014
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
stoc: convert TEST_LIST_CLASSES case also
Change-Id: Ib7b00f052c5b907ccc9b0aba924ada41ff1db023
üst
e856f232
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
base.hxx
stoc/source/corereflection/base.hxx
+1
-1
crbase.cxx
stoc/source/corereflection/crbase.cxx
+2
-2
No files found.
stoc/source/corereflection/base.hxx
Dosyayı görüntüle @
c38678e1
...
...
@@ -50,7 +50,7 @@ namespace stoc_corefl
{
#ifdef TEST_LIST_CLASSES
typedef
list
<
OUString
>
ClassNameList
;
typedef
std
::
list
<
OUString
>
ClassNameList
;
extern
ClassNameList
g_aClassNames
;
#endif
...
...
stoc/source/corereflection/crbase.cxx
Dosyayı görüntüle @
c38678e1
...
...
@@ -67,7 +67,7 @@ IdlClassImpl::IdlClassImpl( IdlReflectionServiceImpl * pReflection,
}
#ifdef TEST_LIST_CLASSES
ClassNameList
::
const_iterator
iFind
(
find
(
g_aClassNames
.
begin
(),
g_aClassNames
.
end
(),
_aName
)
);
ClassNameList
::
const_iterator
iFind
(
std
::
find
(
g_aClassNames
.
begin
(),
g_aClassNames
.
end
(),
_aName
)
);
OSL_ENSURE
(
iFind
==
g_aClassNames
.
end
(),
"### idl class already exists!"
);
g_aClassNames
.
push_front
(
_aName
);
#endif
...
...
@@ -81,7 +81,7 @@ IdlClassImpl::~IdlClassImpl()
_pReflection
->
release
();
#ifdef TEST_LIST_CLASSES
ClassNameList
::
iterator
iFind
(
find
(
g_aClassNames
.
begin
(),
g_aClassNames
.
end
(),
_aName
)
);
ClassNameList
::
iterator
iFind
(
std
::
find
(
g_aClassNames
.
begin
(),
g_aClassNames
.
end
(),
_aName
)
);
OSL_ENSURE
(
iFind
!=
g_aClassNames
.
end
(),
"### idl class does not exist!"
);
g_aClassNames
.
erase
(
iFind
);
#endif
...
...
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