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
d8584f62
Kaydet (Commit)
d8584f62
authored
Agu 14, 2014
tarafından
Norbert Thiebaud
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#82550 LogicWidthToDeviceCoordinate missed handling of mbMap == false
Change-Id: I98902ed266ae7b2737fa9720d69a4b87cc958d51
üst
32a92502
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
map.cxx
vcl/source/outdev/map.cxx
+5
-4
No files found.
vcl/source/outdev/map.cxx
Dosyayı görüntüle @
d8584f62
...
@@ -2144,11 +2144,12 @@ long Window::ImplLogicUnitToPixelY( long nY, MapUnit eUnit )
...
@@ -2144,11 +2144,12 @@ long Window::ImplLogicUnitToPixelY( long nY, MapUnit eUnit )
DeviceCoordinate
OutputDevice
::
LogicWidthToDeviceCoordinate
(
long
nWidth
)
const
DeviceCoordinate
OutputDevice
::
LogicWidthToDeviceCoordinate
(
long
nWidth
)
const
{
{
if
(
!
mbMap
)
return
(
DeviceCoordinate
)
nWidth
;
#if VCL_FLOAT_DEVICE_PIXEL
#if VCL_FLOAT_DEVICE_PIXEL
return
(
double
)
nWidth
*
maMapRes
.
mfScaleX
*
mnDPIX
;
return
(
double
)
nWidth
*
maMapRes
.
mfScaleX
*
mnDPIX
;
#else
#else
if
(
!
mbMap
)
return
nWidth
;
return
ImplLogicToPixel
(
nWidth
,
mnDPIX
,
return
ImplLogicToPixel
(
nWidth
,
mnDPIX
,
maMapRes
.
mnMapScNumX
,
maMapRes
.
mnMapScDenomX
,
maMapRes
.
mnMapScNumX
,
maMapRes
.
mnMapScDenomX
,
...
@@ -2158,11 +2159,11 @@ DeviceCoordinate OutputDevice::LogicWidthToDeviceCoordinate( long nWidth ) const
...
@@ -2158,11 +2159,11 @@ DeviceCoordinate OutputDevice::LogicWidthToDeviceCoordinate( long nWidth ) const
DeviceCoordinate
OutputDevice
::
LogicHeightToDeviceCoordinate
(
long
nHeight
)
const
DeviceCoordinate
OutputDevice
::
LogicHeightToDeviceCoordinate
(
long
nHeight
)
const
{
{
if
(
!
mbMap
)
return
(
DeviceCoordinate
)
nHeight
;
#if VCL_FLOAT_DEVICE_PIXEL
#if VCL_FLOAT_DEVICE_PIXEL
return
(
double
)
nHeight
*
maMapRes
.
mfScaleY
*
mnDPIY
;
return
(
double
)
nHeight
*
maMapRes
.
mfScaleY
*
mnDPIY
;
#else
#else
if
(
!
mbMap
)
return
nHeight
;
return
ImplLogicToPixel
(
nHeight
,
mnDPIY
,
return
ImplLogicToPixel
(
nHeight
,
mnDPIY
,
maMapRes
.
mnMapScNumY
,
maMapRes
.
mnMapScDenomY
,
maMapRes
.
mnMapScNumY
,
maMapRes
.
mnMapScDenomY
,
...
...
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