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
d178d7be
Kaydet (Commit)
d178d7be
authored
Eyl 02, 2011
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#40466: Get charts to import from xlsx again.
This regression was probably caused by a bad merge of OOo m106.
üst
2c00fc52
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
drawingfragment.cxx
oox/source/xls/drawingfragment.cxx
+11
-2
No files found.
oox/source/xls/drawingfragment.cxx
Dosyayı görüntüle @
d178d7be
...
@@ -283,11 +283,20 @@ void DrawingFragment::onEndElement()
...
@@ -283,11 +283,20 @@ void DrawingFragment::onEndElement()
getLimitedValue
<
sal_Int32
,
sal_Int64
>
(
aShapeRectEmu
.
Y
,
0
,
SAL_MAX_INT32
),
getLimitedValue
<
sal_Int32
,
sal_Int64
>
(
aShapeRectEmu
.
Y
,
0
,
SAL_MAX_INT32
),
getLimitedValue
<
sal_Int32
,
sal_Int64
>
(
aShapeRectEmu
.
Width
,
0
,
SAL_MAX_INT32
),
getLimitedValue
<
sal_Int32
,
sal_Int64
>
(
aShapeRectEmu
.
Width
,
0
,
SAL_MAX_INT32
),
getLimitedValue
<
sal_Int32
,
sal_Int64
>
(
aShapeRectEmu
.
Height
,
0
,
SAL_MAX_INT32
)
);
getLimitedValue
<
sal_Int32
,
sal_Int64
>
(
aShapeRectEmu
.
Height
,
0
,
SAL_MAX_INT32
)
);
// Make sure to set the position and size *before* calling addShape().
mxShape
->
setPosition
(
::
com
::
sun
::
star
::
awt
::
Point
(
aShapeRectEmu
.
X
,
aShapeRectEmu
.
Y
));
mxShape
->
setSize
(
::
com
::
sun
::
star
::
awt
::
Size
(
aShapeRectEmu
.
Width
,
aShapeRectEmu
.
Height
));
basegfx
::
B2DHomMatrix
aTransformation
;
basegfx
::
B2DHomMatrix
aTransformation
;
mxShape
->
addShape
(
getOoxFilter
(),
&
getTheme
(),
mxDrawPage
,
aTransformation
,
&
aShapeRectEmu32
);
mxShape
->
addShape
(
getOoxFilter
(),
&
getTheme
(),
mxDrawPage
,
aTransformation
,
&
aShapeRectEmu32
);
// collect all shape positions in the WorksheetHelper base class
/* Collect all shape positions in the WorksheetHelper base
extendShapeBoundingBox
(
aShapeRectEmu32
);
class. But first, scale EMUs to 1/100 mm. */
Rectangle
aShapeRectHmm
(
convertEmuToHmm
(
aShapeRectEmu
.
X
),
convertEmuToHmm
(
aShapeRectEmu
.
Y
),
convertEmuToHmm
(
aShapeRectEmu
.
Width
),
convertEmuToHmm
(
aShapeRectEmu
.
Height
)
);
extendShapeBoundingBox
(
aShapeRectHmm
);
}
}
}
}
mxShape
.
reset
();
mxShape
.
reset
();
...
...
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