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
924f0936
Kaydet (Commit)
924f0936
authored
Kas 29, 2012
tarafından
Lionel Elie Mamane
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
clang says call is ambiguous
Change-Id: I29e510a922c262b294a94596db9c2deea271e811
üst
251dab01
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
FixedLine.cxx
reportdesign/source/core/api/FixedLine.cxx
+2
-2
No files found.
reportdesign/source/core/api/FixedLine.cxx
Dosyayı görüntüle @
924f0936
...
@@ -517,9 +517,9 @@ void SAL_CALL OFixedLine::setSize( const awt::Size& aSize ) throw (beans::Proper
...
@@ -517,9 +517,9 @@ void SAL_CALL OFixedLine::setSize( const awt::Size& aSize ) throw (beans::Proper
const
char
hundredthmmC
[]
=
"0
\xe2\x80\x89\xC2\xB5
""m"
;
// in UTF-8: 0, thin space, µ (micro), m (meter)
const
char
hundredthmmC
[]
=
"0
\xe2\x80\x89\xC2\xB5
""m"
;
// in UTF-8: 0, thin space, µ (micro), m (meter)
const
rtl
::
OUString
hundredthmm
(
hundredthmmC
,
sizeof
(
hundredthmmC
)
-
1
,
RTL_TEXTENCODING_UTF8
);
const
rtl
::
OUString
hundredthmm
(
hundredthmmC
,
sizeof
(
hundredthmmC
)
-
1
,
RTL_TEXTENCODING_UTF8
);
if
(
aSize
.
Width
<
MIN_WIDTH
&&
m_nOrientation
==
1
)
if
(
aSize
.
Width
<
MIN_WIDTH
&&
m_nOrientation
==
1
)
throw
beans
::
PropertyVetoException
(
"Too small width for FixedLine; minimum is "
+
rtl
::
OUString
::
valueOf
(
MIN_WIDTH
)
+
hundredthmm
,
*
this
);
throw
beans
::
PropertyVetoException
(
"Too small width for FixedLine; minimum is "
+
rtl
::
OUString
::
valueOf
(
MIN_WIDTH
,
10
)
+
hundredthmm
,
*
this
);
else
if
(
aSize
.
Height
<
MIN_HEIGHT
&&
m_nOrientation
==
0
)
else
if
(
aSize
.
Height
<
MIN_HEIGHT
&&
m_nOrientation
==
0
)
throw
beans
::
PropertyVetoException
(
"Too small height for FixedLine; minimum is "
+
rtl
::
OUString
::
valueOf
(
MIN_HEIGHT
)
+
hundredthmm
,
*
this
);
throw
beans
::
PropertyVetoException
(
"Too small height for FixedLine; minimum is "
+
rtl
::
OUString
::
valueOf
(
MIN_HEIGHT
,
10
)
+
hundredthmm
,
*
this
);
OShapeHelper
::
setSize
(
aSize
,
this
);
OShapeHelper
::
setSize
(
aSize
,
this
);
}
}
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
...
...
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