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
b6aeba0d
Kaydet (Commit)
b6aeba0d
authored
Nis 29, 2012
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Prefix ++/-- operators for non-primitive types
Change-Id: Ie64f5393fb285431401bf3c19fc4c25c7085dd04
üst
05d470cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
+2
-5
swfwriter.cxx
filter/source/flash/swfwriter.cxx
+1
-2
swfwriter1.cxx
filter/source/flash/swfwriter1.cxx
+1
-3
No files found.
filter/source/flash/swfwriter.cxx
Dosyayı görüntüle @
b6aeba0d
...
...
@@ -364,10 +364,9 @@ sal_uInt16 Writer::defineShape( const GDIMetaFile& rMtf, sal_Int16 x, sal_Int16
nId
=
startSprite
();
sal_uInt16
iDepth
=
1
;
while
(
aIter
!=
aEnd
)
for
(;
aIter
!=
aEnd
;
++
aIter
)
{
placeShape
(
*
aIter
,
iDepth
++
,
x
,
y
);
aIter
++
;
}
endSprite
();
...
...
filter/source/flash/swfwriter1.cxx
Dosyayı görüntüle @
b6aeba0d
...
...
@@ -407,15 +407,13 @@ FlashFont& Writer::Impl_getFont( const Font& rFont )
FontMap
::
iterator
aIter
(
maFonts
.
begin
()
);
const
FontMap
::
iterator
aEnd
(
maFonts
.
end
()
);
while
(
aIter
!=
aEnd
)
for
(;
aIter
!=
aEnd
;
++
aIter
)
{
const
Font
tempFont
=
(
*
aIter
)
->
getFont
();
if
(
compare_fonts_for_me
(
tempFont
,
rFont
)
)
{
return
**
aIter
;
}
aIter
++
;
}
FlashFont
*
pFont
=
new
FlashFont
(
rFont
,
createID
()
);
...
...
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