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
80743f11
Kaydet (Commit)
80743f11
authored
May 08, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Unused oox::AttributeList::getUnsignedHex() variant
Change-Id: I4ec0cd4781aaa905f734b15ba4eff7819ca01082
üst
a20d53af
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
10 deletions
+0
-10
attributelist.hxx
include/oox/helper/attributelist.hxx
+0
-3
attributelist.cxx
oox/source/helper/attributelist.cxx
+0
-7
No files found.
include/oox/helper/attributelist.hxx
Dosyayı görüntüle @
80743f11
...
@@ -112,9 +112,6 @@ public:
...
@@ -112,9 +112,6 @@ public:
/** Returns the 32-bit signed integer value of the specified attribute (hexadecimal). */
/** Returns the 32-bit signed integer value of the specified attribute (hexadecimal). */
OptValue
<
sal_Int32
>
getIntegerHex
(
sal_Int32
nAttrToken
)
const
;
OptValue
<
sal_Int32
>
getIntegerHex
(
sal_Int32
nAttrToken
)
const
;
/** Returns the 32-bit unsigned integer value of the specified attribute (hexadecimal). */
OptValue
<
sal_uInt32
>
getUnsignedHex
(
sal_Int32
nAttrToken
)
const
;
/** Returns the boolean value of the specified attribute. */
/** Returns the boolean value of the specified attribute. */
OptValue
<
bool
>
getBool
(
sal_Int32
nAttrToken
)
const
;
OptValue
<
bool
>
getBool
(
sal_Int32
nAttrToken
)
const
;
...
...
oox/source/helper/attributelist.cxx
Dosyayı görüntüle @
80743f11
...
@@ -191,13 +191,6 @@ OptValue< sal_Int32 > AttributeList::getIntegerHex( sal_Int32 nAttrToken ) const
...
@@ -191,13 +191,6 @@ OptValue< sal_Int32 > AttributeList::getIntegerHex( sal_Int32 nAttrToken ) const
return
OptValue
<
sal_Int32
>
(
bValid
,
bValid
?
AttributeConversion
::
decodeIntegerHex
(
aValue
)
:
0
);
return
OptValue
<
sal_Int32
>
(
bValid
,
bValid
?
AttributeConversion
::
decodeIntegerHex
(
aValue
)
:
0
);
}
}
OptValue
<
sal_uInt32
>
AttributeList
::
getUnsignedHex
(
sal_Int32
nAttrToken
)
const
{
OUString
aValue
=
mxAttribs
->
getOptionalValue
(
nAttrToken
);
bool
bValid
=
!
aValue
.
isEmpty
();
return
OptValue
<
sal_uInt32
>
(
bValid
,
bValid
?
AttributeConversion
::
decodeUnsignedHex
(
aValue
)
:
0
);
}
OptValue
<
bool
>
AttributeList
::
getBool
(
sal_Int32
nAttrToken
)
const
OptValue
<
bool
>
AttributeList
::
getBool
(
sal_Int32
nAttrToken
)
const
{
{
const
char
*
pAttr
;
const
char
*
pAttr
;
...
...
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