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
e53047ad
Kaydet (Commit)
e53047ad
authored
Nis 18, 2012
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loop with erase(begin()) looks sort of inefficient
üst
f36861d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
xmlnumfi.cxx
xmloff/source/style/xmlnumfi.cxx
+1
-1
XMLTextColumnsContext.cxx
xmloff/source/text/XMLTextColumnsContext.cxx
+3
-4
No files found.
xmloff/source/style/xmlnumfi.cxx
Dosyayı görüntüle @
e53047ad
...
@@ -72,7 +72,7 @@ struct SvXMLNumFmtEntry
...
@@ -72,7 +72,7 @@ struct SvXMLNumFmtEntry
aName
(
rN
),
nKey
(
nK
),
bRemoveAfterUse
(
bR
)
{}
aName
(
rN
),
nKey
(
nK
),
bRemoveAfterUse
(
bR
)
{}
};
};
class
SvXMLNumFmtEntryArr
:
public
boost
::
ptr_vector
<
SvXMLNumFmtEntry
>
{}
;
typedef
::
boost
::
ptr_vector
<
SvXMLNumFmtEntry
>
SvXMLNumFmtEntryArr
;
struct
SvXMLEmbeddedElement
struct
SvXMLEmbeddedElement
{
{
...
...
xmloff/source/text/XMLTextColumnsContext.cxx
Dosyayı görüntüle @
e53047ad
...
@@ -342,11 +342,10 @@ XMLTextColumnsContext::~XMLTextColumnsContext()
...
@@ -342,11 +342,10 @@ XMLTextColumnsContext::~XMLTextColumnsContext()
{
{
if
(
pColumns
)
if
(
pColumns
)
{
{
while
(
!
pColumns
->
empty
()
)
for
(
XMLTextColumnsArray_Impl
::
iterator
it
=
pColumns
->
begin
();
it
!=
pColumns
->
end
();
++
it
)
{
{
XMLTextColumnContext_Impl
*
pColumn
=
*
pColumns
->
begin
();
(
*
it
)
->
ReleaseRef
();
pColumns
->
erase
(
pColumns
->
begin
()
);
pColumn
->
ReleaseRef
();
}
}
}
}
if
(
pColumnSep
)
if
(
pColumnSep
)
...
...
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