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
0a993722
Kaydet (Commit)
0a993722
authored
Kas 21, 2013
tarafından
Jürgen Schmidt
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#122853# replace slist size>0 with not empty
üst
51e177c8
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
12 additions
and
12 deletions
+12
-12
namechain.cxx
autodoc/source/ary/cpp/namechain.cxx
+2
-2
easywri.cxx
autodoc/source/display/html/easywri.cxx
+1
-1
outputstack.hxx
autodoc/source/display/inc/toolkit/outputstack.hxx
+1
-1
sownstck.hxx
autodoc/source/parser/cpp/sownstck.hxx
+2
-2
distrib.cxx
autodoc/source/parser_i/idl/distrib.cxx
+1
-1
pe_excp.cxx
autodoc/source/parser_i/idl/pe_excp.cxx
+1
-1
pe_iface.cxx
autodoc/source/parser_i/idl/pe_iface.cxx
+1
-1
pe_servi.cxx
autodoc/source/parser_i/idl/pe_servi.cxx
+1
-1
pe_singl.cxx
autodoc/source/parser_i/idl/pe_singl.cxx
+1
-1
pe_struc.cxx
autodoc/source/parser_i/idl/pe_struc.cxx
+1
-1
No files found.
autodoc/source/ary/cpp/namechain.cxx
Dosyayı görüntüle @
0a993722
...
...
@@ -129,7 +129,7 @@ NameChain::Add_Segment( const char * i_sSeg )
List_TplParameter
&
NameChain
::
Templatize_LastSegment
()
{
csv_assert
(
aSegments
.
size
()
>
0
);
csv_assert
(
!
aSegments
.
empty
()
);
return
aSegments
.
back
().
AddTemplate
();
}
...
...
@@ -158,7 +158,7 @@ NameChain::Compare( const NameChain & i_rChain ) const
const
String
&
NameChain
::
LastSegment
()
const
{
if
(
aSegments
.
size
()
>
0
)
if
(
!
aSegments
.
empty
()
)
return
aSegments
.
back
().
Name
();
return
String
::
Null_
();
}
...
...
autodoc/source/display/html/easywri.cxx
Dosyayı görüntüle @
0a993722
...
...
@@ -53,7 +53,7 @@ EasyWriter::Finish_OutputNode()
csi
::
xml
::
Element
&
EasyWriter
::
Out
()
{
csv_assert
(
aCurDestination
.
size
()
>
0
);
csv_assert
(
!
aCurDestination
.
empty
()
);
return
*
aCurDestination
.
top
();
}
autodoc/source/display/inc/toolkit/outputstack.hxx
Dosyayı görüntüle @
0a993722
...
...
@@ -57,7 +57,7 @@ class OutputStack
inline
csi
::
xml
::
Element
&
OutputStack
::
Out
()
const
{
csv_assert
(
aCurDestination
.
size
()
>
0
);
csv_assert
(
!
aCurDestination
.
empty
()
);
return
*
aCurDestination
.
top
();
}
...
...
autodoc/source/parser/cpp/sownstck.hxx
Dosyayı görüntüle @
0a993722
...
...
@@ -113,7 +113,7 @@ inline ary::cpp::Namespace &
ContextForAry
::
S_OwnerStack
::
CurNamespace
()
const
{
csv_assert
(
aStack_Namespaces
.
size
()
>
0
);
csv_assert
(
!
aStack_Namespaces
.
empty
()
);
return
*
aStack_Namespaces
.
top
();
}
...
...
@@ -204,7 +204,7 @@ inline void
ContextForAry
::
S_OwnerStack
::
SetCurProtection
(
ary
::
cpp
::
E_Protection
i_eProtection
)
{
csv_assert
(
aStack_Classes
.
size
()
>
0
);
csv_assert
(
!
aStack_Classes
.
empty
()
);
aStack_Classes
.
top
().
second
=
i_eProtection
;
}
...
...
autodoc/source/parser_i/idl/distrib.cxx
Dosyayı görüntüle @
0a993722
...
...
@@ -129,7 +129,7 @@ if (DEBUG_ShowTokens())
UnoIDL_PE
&
TokenDistributor
::
ProcessingData
::
CurEnvironment
()
const
{
csv_assert
(
aEnvironments
.
size
()
>
0
);
csv_assert
(
!
aEnvironments
.
empty
()
);
csv_assert
(
aEnvironments
.
back
().
first
!=
0
);
return
*
aEnvironments
.
back
().
first
;
...
...
autodoc/source/parser_i/idl/pe_excp.cxx
Dosyayı görüntüle @
0a993722
...
...
@@ -83,7 +83,7 @@ PE_Exception::TransferData()
{
if
(
NOT
Work
().
bIsPreDeclaration
)
{
csv_assert
(
Work
().
sData_Name
.
size
()
>
0
);
csv_assert
(
!
Work
().
sData_Name
.
empty
()
);
csv_assert
(
Work
().
nCurStruct
.
IsValid
());
}
Stati
().
pCurStatus
=
&
Stati
().
aNone
;
...
...
autodoc/source/parser_i/idl/pe_iface.cxx
Dosyayı görüntüle @
0a993722
...
...
@@ -395,7 +395,7 @@ PE_Interface::TransferData()
{
if
(
NOT
bIsPreDeclaration
)
{
csv_assert
(
sData_Name
.
size
()
>
0
);
csv_assert
(
!
sData_Name
.
empty
()
);
csv_assert
(
nCurInterface
.
IsValid
());
}
else
...
...
autodoc/source/parser_i/idl/pe_servi.cxx
Dosyayı görüntüle @
0a993722
...
...
@@ -304,7 +304,7 @@ PE_Service::TransferData()
{
if
(
NOT
bIsPreDeclaration
)
{
csv_assert
(
sData_Name
.
size
()
>
0
);
csv_assert
(
!
sData_Name
.
empty
()
);
csv_assert
(
(
pCurService
!=
0
)
!=
(
pCurSiService
!=
0
)
);
}
...
...
autodoc/source/parser_i/idl/pe_singl.cxx
Dosyayı görüntüle @
0a993722
...
...
@@ -225,7 +225,7 @@ PE_Singleton::TransferData()
{
if
(
NOT
bIsPreDeclaration
)
{
csv_assert
(
sData_Name
.
size
()
>
0
);
csv_assert
(
!
sData_Name
.
empty
()
);
csv_assert
(
(
pCurSingleton
!=
0
)
!=
(
pCurSiSingleton
!=
0
)
);
}
...
...
autodoc/source/parser_i/idl/pe_struc.cxx
Dosyayı görüntüle @
0a993722
...
...
@@ -82,7 +82,7 @@ PE_Struct::TransferData()
{
if
(
NOT
Work
().
bIsPreDeclaration
)
{
csv_assert
(
Work
().
sData_Name
.
size
()
>
0
);
csv_assert
(
!
Work
().
sData_Name
.
empty
()
);
csv_assert
(
Work
().
nCurStruct
.
IsValid
());
}
Stati
().
pCurStatus
=
&
Stati
().
aNone
;
...
...
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