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
cbdcdbff
Kaydet (Commit)
cbdcdbff
authored
Agu 16, 2012
tarafından
Jianyuan Li
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#119570# fix chaos grouped object when import
Reported by: Du Jing Patch by: Jianyuan Li Review by: SunYing
üst
74f769f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
msdffimp.cxx
filter/source/msfilter/msdffimp.cxx
+11
-1
No files found.
filter/source/msfilter/msdffimp.cxx
Dosyayı görüntüle @
cbdcdbff
...
...
@@ -4945,6 +4945,7 @@ Rectangle SvxMSDffManager::GetGlobalChildAnchor( const DffRecordHeader& rHd, SvS
{
Rectangle aChildAnchor;
rHd.SeekToContent( rSt );
sal_Bool bIsClientRectRead = sal_False;
while ( ( rSt.GetError() == 0 ) && ( rSt.Tell() < rHd.GetRecEndFilePos() ) )
{
DffRecordHeader aShapeHd;
...
...
@@ -4979,7 +4980,16 @@ Rectangle SvxMSDffManager::GetGlobalChildAnchor( const DffRecordHeader& rHd, SvS
Scale( t );
Scale( r );
Scale( b );
aClientRect = Rectangle( l, t, r, b );
if ( bIsClientRectRead )
{
Rectangle aChild( l, t, r, b );
aChildAnchor.Union( aChild );
}
else
{
aClientRect = Rectangle( l, t, r, b );
bIsClientRectRead = sal_True;
}
}
break;
}
...
...
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