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
ce300bf2
Kaydet (Commit)
ce300bf2
authored
May 12, 2014
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SAL_INT64_IS_STRUCT is never defined
Change-Id: I326a429beec5fd1932afff0a1f50522426de15e2
üst
162029e5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
33 deletions
+0
-33
css1atr.cxx
sw/source/filter/html/css1atr.cxx
+0
-33
No files found.
sw/source/filter/html/css1atr.cxx
Dosyayı görüntüle @
ce300bf2
...
@@ -53,7 +53,6 @@
...
@@ -53,7 +53,6 @@
#include <sfx2/htmlmode.hxx>
#include <sfx2/htmlmode.hxx>
#include <svl/urihelper.hxx>
#include <svl/urihelper.hxx>
#include <tools/urlobj.hxx>
#include <tools/urlobj.hxx>
#include <tools/bigint.hxx>
#include <unotools/charclass.hxx>
#include <unotools/charclass.hxx>
#include <i18nlangtag/languagetag.hxx>
#include <i18nlangtag/languagetag.hxx>
#include <charfmt.hxx>
#include <charfmt.hxx>
...
@@ -359,37 +358,6 @@ static void AddUnitPropertyValue(OStringBuffer &rOut, long nVal,
...
@@ -359,37 +358,6 @@ static void AddUnitPropertyValue(OStringBuffer &rOut, long nVal,
bool
bOutLongVal
=
true
;
bool
bOutLongVal
=
true
;
if
(
nVal
>
LONG_MAX
/
nMul
)
if
(
nVal
>
LONG_MAX
/
nMul
)
{
{
// needs a BigInt to translate this unit
#ifdef SAL_INT64_IS_STRUCT
BigInt
nBigVal
(
nVal
);
nBigVal
*=
nMul
;
nBigVal
/=
nDiv
;
nBigVal
+=
5
;
nBigVal
/=
10
;
if
(
nBigVal
.
IsLong
()
)
{
// a long is sufficient
nLongVal
=
(
long
)
nBigVal
;
}
else
{
BigInt
nBigFac
(
nFac
);
BigInt
nBig10
(
10
);
rOut
+=
(
long
)(
nBigVal
/
nBigFac
);
if
(
!
(
nBigVal
%
nBigFac
).
IsZero
()
)
{
rOut
.
append
(
'.'
);
while
(
nFac
>
1
&&
!
(
nBigVal
%
nBigFac
).
IsZero
()
)
{
nFac
/=
10
;
nBigFac
=
nFac
;
rOut
.
append
(
OString
::
number
((
nBigVal
/
nBigFac
)
%
nBig10
));
}
}
bOutLongVal
=
false
;
}
#else
sal_Int64
nBigVal
(
nVal
);
sal_Int64
nBigVal
(
nVal
);
nBigVal
*=
nMul
;
nBigVal
*=
nMul
;
nBigVal
/=
nDiv
;
nBigVal
/=
nDiv
;
...
@@ -415,7 +383,6 @@ static void AddUnitPropertyValue(OStringBuffer &rOut, long nVal,
...
@@ -415,7 +383,6 @@ static void AddUnitPropertyValue(OStringBuffer &rOut, long nVal,
}
}
bOutLongVal
=
false
;
bOutLongVal
=
false
;
}
}
#endif
}
}
else
else
{
{
...
...
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