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
a13a9a04
Kaydet (Commit)
a13a9a04
authored
Mar 15, 2012
tarafından
Petr Vorel
Kaydeden (comit)
Cédric Bosdonnat
Mar 15, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove unused code (oox, sd)
üst
c8620de6
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
0 additions
and
73 deletions
+0
-73
attributelist.hxx
oox/inc/oox/helper/attributelist.hxx
+0
-6
containerhelper.hxx
oox/inc/oox/helper/containerhelper.hxx
+0
-16
graphichelper.hxx
oox/inc/oox/helper/graphichelper.hxx
+0
-2
attributelist.cxx
oox/source/helper/attributelist.cxx
+0
-10
containerhelper.cxx
oox/source/helper/containerhelper.cxx
+0
-18
graphichelper.cxx
oox/source/helper/graphichelper.cxx
+0
-5
epptooxml.hxx
sd/source/filter/eppt/epptooxml.hxx
+0
-1
pptx-epptooxml.cxx
sd/source/filter/eppt/pptx-epptooxml.cxx
+0
-10
unusedcode.easy
unusedcode.easy
+0
-5
No files found.
oox/inc/oox/helper/attributelist.hxx
Dosyayı görüntüle @
a13a9a04
...
...
@@ -66,12 +66,6 @@ public:
/** Returns the 32-bit signed integer value from the passed string (hexadecimal). */
static
sal_Int32
decodeIntegerHex
(
const
::
rtl
::
OUString
&
rValue
);
/** Returns the 32-bit unsigned integer value from the passed string (hexadecimal). */
static
sal_uInt32
decodeUnsignedHex
(
const
::
rtl
::
OUString
&
rValue
);
/** Returns the 64-bit signed integer value from the passed string (hexadecimal). */
static
sal_Int64
decodeHyperHex
(
const
::
rtl
::
OUString
&
rValue
);
};
// ============================================================================
...
...
oox/inc/oox/helper/containerhelper.hxx
Dosyayı görüntüle @
a13a9a04
...
...
@@ -173,22 +173,6 @@ public:
static
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
container
::
XIndexContainer
>
createIndexContainer
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XComponentContext
>&
rxContext
);
/** Inserts an object into an indexed container.
@param rxIndexContainer com.sun.star.container.XIndexContainer
interface of the indexed container.
@param nIndex Insertion index for the object.
@param rObject The object to be inserted.
@return True = object successfully inserted.
*/
static
bool
insertByIndex
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
container
::
XIndexContainer
>&
rxIndexContainer
,
sal_Int32
nIndex
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rObject
);
// com.sun.star.container.XNameContainer ----------------------------------
/** Creates a new name container object from scratch. */
...
...
oox/inc/oox/helper/graphichelper.hxx
Dosyayı görüntüle @
a13a9a04
...
...
@@ -93,8 +93,6 @@ public:
sal_Int32
convertScreenPixelXToHmm
(
double
fPixelX
)
const
;
/** Converts the passed value from vertical screen pixels to 1/100 mm. */
sal_Int32
convertScreenPixelYToHmm
(
double
fPixelY
)
const
;
/** Converts the passed point from screen pixels to 1/100 mm. */
::
com
::
sun
::
star
::
awt
::
Point
convertScreenPixelToHmm
(
const
::
com
::
sun
::
star
::
awt
::
Point
&
rPixel
)
const
;
/** Converts the passed size from screen pixels to 1/100 mm. */
::
com
::
sun
::
star
::
awt
::
Size
convertScreenPixelToHmm
(
const
::
com
::
sun
::
star
::
awt
::
Size
&
rPixel
)
const
;
...
...
oox/source/helper/attributelist.cxx
Dosyayı görüntüle @
a13a9a04
...
...
@@ -122,16 +122,6 @@ sal_Int32 AttributeConversion::decodeIntegerHex( const OUString& rValue )
return
rValue
.
toInt32
(
16
);
}
sal_uInt32
AttributeConversion
::
decodeUnsignedHex
(
const
OUString
&
rValue
)
{
return
getLimitedValue
<
sal_uInt32
,
sal_Int64
>
(
rValue
.
toInt64
(
16
),
0
,
SAL_MAX_UINT32
);
}
sal_Int64
AttributeConversion
::
decodeHyperHex
(
const
OUString
&
rValue
)
{
return
rValue
.
toInt64
(
16
);
}
// ============================================================================
AttributeList
::
AttributeList
(
const
Reference
<
XFastAttributeList
>&
rxAttribs
)
:
...
...
oox/source/helper/containerhelper.cxx
Dosyayı görüntüle @
a13a9a04
...
...
@@ -119,24 +119,6 @@ Reference< XIndexContainer > ContainerHelper::createIndexContainer( const Refere
return
xContainer
;
}
bool
ContainerHelper
::
insertByIndex
(
const
Reference
<
XIndexContainer
>&
rxIndexContainer
,
sal_Int32
nIndex
,
const
Any
&
rObject
)
{
OSL_ENSURE
(
rxIndexContainer
.
is
(),
"ContainerHelper::insertByIndex - missing XIndexContainer interface"
);
bool
bRet
=
false
;
try
{
rxIndexContainer
->
insertByIndex
(
nIndex
,
rObject
);
bRet
=
true
;
}
catch
(
Exception
&
)
{
}
OSL_ENSURE
(
bRet
,
"ContainerHelper::insertByIndex - cannot insert object"
);
return
bRet
;
}
Reference
<
XNameContainer
>
ContainerHelper
::
createNameContainer
(
const
Reference
<
XComponentContext
>&
rxContext
)
{
Reference
<
XNameContainer
>
xContainer
;
...
...
oox/source/helper/graphichelper.cxx
Dosyayı görüntüle @
a13a9a04
...
...
@@ -185,11 +185,6 @@ sal_Int32 GraphicHelper::convertScreenPixelYToHmm( double fPixelY ) const
return
lclConvertScreenPixelToHmm
(
fPixelY
,
mfPixelPerHmmY
);
}
awt
::
Point
GraphicHelper
::
convertScreenPixelToHmm
(
const
awt
::
Point
&
rPixel
)
const
{
return
awt
::
Point
(
convertScreenPixelXToHmm
(
rPixel
.
X
),
convertScreenPixelYToHmm
(
rPixel
.
Y
)
);
}
awt
::
Size
GraphicHelper
::
convertScreenPixelToHmm
(
const
awt
::
Size
&
rPixel
)
const
{
return
awt
::
Size
(
convertScreenPixelXToHmm
(
rPixel
.
Width
),
convertScreenPixelYToHmm
(
rPixel
.
Height
)
);
...
...
sd/source/filter/eppt/epptooxml.hxx
Dosyayı görüntüle @
a13a9a04
...
...
@@ -125,7 +125,6 @@ protected:
void
WriteAnimationProperty
(
::
sax_fastparser
::
FSHelperPtr
pFS
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rAny
);
void
WriteAnimationTarget
(
::
sax_fastparser
::
FSHelperPtr
pFS
,
::
com
::
sun
::
star
::
uno
::
Any
aTarget
);
bool
WriteComments
(
sal_uInt32
nPageNum
);
void
WriteTextStyle
(
::
sax_fastparser
::
FSHelperPtr
pFS
,
int
nInstance
,
sal_Int32
xmlToken
);
void
WriteTextStyleLevel
(
::
sax_fastparser
::
FSHelperPtr
pFS
,
int
nInstance
,
int
nLevel
);
void
ImplWriteBackground
(
::
sax_fastparser
::
FSHelperPtr
pFS
,
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertySet
>
aXBackgroundPropSet
);
void
WriteTransition
(
::
sax_fastparser
::
FSHelperPtr
pFS
);
...
...
sd/source/filter/eppt/pptx-epptooxml.cxx
Dosyayı görüntüle @
a13a9a04
...
...
@@ -1551,16 +1551,6 @@ void PowerPointExport::WriteTextStyleLevel( FSHelperPtr pFS, int nInstance, int
pFS
->
endElementNS
(
XML_a
,
PowerPointExport
::
nStyleLevelToken
[
nLevel
]
);
}
void
PowerPointExport
::
WriteTextStyle
(
FSHelperPtr
pFS
,
int
nInstance
,
sal_Int32
xmlToken
)
{
pFS
->
startElementNS
(
XML_p
,
xmlToken
,
FSEND
);
for
(
int
nLevel
=
0
;
nLevel
<
5
;
nLevel
++
)
WriteTextStyleLevel
(
pFS
,
nInstance
,
nLevel
);
pFS
->
endElementNS
(
XML_p
,
xmlToken
);
}
void
PowerPointExport
::
ImplWriteSlideMaster
(
sal_uInt32
nPageNum
,
Reference
<
XPropertySet
>
aXBackgroundPropSet
)
{
DBG
(
printf
(
"write slide master: %"
SAL_PRIuUINT32
"
\n
----------------
\n
"
,
nPageNum
));
...
...
unusedcode.easy
Dosyayı görüntüle @
a13a9a04
...
...
@@ -888,11 +888,6 @@ nullcanvas::SpriteCanvasHelper::scrollUpdate(basegfx::B2DRange const&, basegfx::
o3tltests::cow_wrapper_client2::queryUnmodified() const
o3tltests::cow_wrapper_client3::queryUnmodified() const
ooo::vba::extractIntFromAny(com::sun::star::uno::Any const&)
oox::AttributeConversion::decodeHyperHex(rtl::OUString const&)
oox::AttributeConversion::decodeUnsignedHex(rtl::OUString const&)
oox::ContainerHelper::insertByIndex(com::sun::star::uno::Reference<com::sun::star::container::XIndexContainer> const&, int, com::sun::star::uno::Any const&)
oox::GraphicHelper::convertScreenPixelToHmm(com::sun::star::awt::Point const&) const
oox::core::PowerPointExport::WriteTextStyle(boost::shared_ptr<sax_fastparser::FastSerializerHelper>, int, int)
oox::drawingml::ChartExport::exportDataSeq(com::sun::star::uno::Reference<com::sun::star::chart2::data::XDataSequence> const&, int)
oox::drawingml::ChartExport::exportXAxis(oox::drawingml::AxisIdPair)
oox::drawingml::ChartExport::exportYAxis(oox::drawingml::AxisIdPair)
...
...
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