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
68c6408b
Kaydet (Commit)
68c6408b
authored
Agu 12, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tdf#93382: Make HACK more targeted to avoid collateral damage
Change-Id: Ieecad5f244703c4d2436e22a3ab50f719843eef4
üst
2e23b6b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
unoshap4.cxx
svx/source/unodraw/unoshap4.cxx
+6
-2
No files found.
svx/source/unodraw/unoshap4.cxx
Dosyayı görüntüle @
68c6408b
...
...
@@ -428,13 +428,17 @@ bool SvxOle2Shape::createObject( const SvGlobalName &aClassName )
{}
pOle2Obj
->
SetLogicRect
(
aRect
);
}
else
if
(
!
aRect
.
IsEmpty
())
//HACK: can aRect legally be empty?
else
{
awt
::
Size
aSz
;
Size
aSize
=
aRect
.
GetSize
();
aSz
.
Width
=
aSize
.
Width
();
aSz
.
Height
=
aSize
.
Height
();
xObj
->
setVisualAreaSize
(
pOle2Obj
->
GetAspect
(),
aSz
);
if
(
aSz
.
Width
!=
0
||
aSz
.
Height
!=
0
)
{
//HACK: can aSz legally be empty?
xObj
->
setVisualAreaSize
(
pOle2Obj
->
GetAspect
(),
aSz
);
}
}
// connect the object after the visual area is set
...
...
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