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
60cf5b57
Kaydet (Commit)
60cf5b57
authored
Mar 14, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: update list
üst
66c62ca1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
38 deletions
+2
-38
rngitem.hxx
svl/inc/svl/rngitem.hxx
+0
-11
rngitem.cxx
svl/source/items/rngitem.cxx
+0
-6
rngitem_inc.cxx
svl/source/items/rngitem_inc.cxx
+2
-12
unusedcode.easy
unusedcode.easy
+0
-9
No files found.
svl/inc/svl/rngitem.hxx
Dosyayı görüntüle @
60cf5b57
...
@@ -38,16 +38,6 @@
...
@@ -38,16 +38,6 @@
#undef SfxXRangeItem
#undef SfxXRangeItem
#undef SfxXRangesItem
#undef SfxXRangesItem
#ifndef _SFXITEMS_HXX
#define NUMTYPE sal_uLong
#define SfxXRangeItem SfxULongRangeItem
#define SfxXRangesItem SfxULongRangesItem
#include <svl/rngitem.hxx>
#undef NUMTYPE
#undef SfxXRangeItem
#undef SfxXRangesItem
#endif
#define _SFXRNGITEM_HXX
#define _SFXRNGITEM_HXX
#else
#else
...
@@ -94,7 +84,6 @@ private:
...
@@ -94,7 +84,6 @@ private:
public
:
public
:
TYPEINFO
();
TYPEINFO
();
SfxXRangesItem
();
SfxXRangesItem
();
SfxXRangesItem
(
sal_uInt16
nWID
,
const
NUMTYPE
*
pRanges
);
SfxXRangesItem
(
sal_uInt16
nWID
,
SvStream
&
rStream
);
SfxXRangesItem
(
sal_uInt16
nWID
,
SvStream
&
rStream
);
SfxXRangesItem
(
const
SfxXRangesItem
&
rItem
);
SfxXRangesItem
(
const
SfxXRangesItem
&
rItem
);
virtual
~
SfxXRangesItem
();
virtual
~
SfxXRangesItem
();
...
...
svl/source/items/rngitem.cxx
Dosyayı görüntüle @
60cf5b57
...
@@ -36,12 +36,6 @@
...
@@ -36,12 +36,6 @@
#include <svl/rngitem.hxx>
#include <svl/rngitem.hxx>
#include "rngitem_inc.cxx"
#include "rngitem_inc.cxx"
#define NUMTYPE sal_uInt32
#define SfxXRangeItem SfxULongRangeItem
#define SfxXRangesItem SfxULongRangesItem
#include <svl/rngitem.hxx>
#include "rngitem_inc.cxx"
#else
#else
// We leave this condition just in case NUMTYPE has been defined externally to this
// We leave this condition just in case NUMTYPE has been defined externally to this
...
...
svl/source/items/rngitem_inc.cxx
Dosyayı görüntüle @
60cf5b57
...
@@ -108,7 +108,7 @@ SfxPoolItem* SfxXRangeItem::Clone(SfxItemPool *) const
...
@@ -108,7 +108,7 @@ SfxPoolItem* SfxXRangeItem::Clone(SfxItemPool *) const
SfxPoolItem
*
SfxXRangeItem
::
Create
(
SvStream
&
rStream
,
sal_uInt16
)
const
SfxPoolItem
*
SfxXRangeItem
::
Create
(
SvStream
&
rStream
,
sal_uInt16
)
const
{
{
NUMTYPE
nVon
,
nBis
;
NUMTYPE
nVon
(
0
),
nBis
(
0
)
;
rStream
>>
nVon
;
rStream
>>
nVon
;
rStream
>>
nBis
;
rStream
>>
nBis
;
return
new
SfxXRangeItem
(
Which
(),
nVon
,
nBis
);
return
new
SfxXRangeItem
(
Which
(),
nVon
,
nBis
);
...
@@ -132,20 +132,10 @@ SfxXRangesItem::SfxXRangesItem()
...
@@ -132,20 +132,10 @@ SfxXRangesItem::SfxXRangesItem()
//-------------------------------------------------------------------------
//-------------------------------------------------------------------------
SfxXRangesItem
::
SfxXRangesItem
(
sal_uInt16
nWID
,
const
NUMTYPE
*
pRanges
)
:
SfxPoolItem
(
nWID
)
{
NUMTYPE
nCount
=
Count_Impl
(
pRanges
)
+
1
;
_pRanges
=
new
NUMTYPE
[
nCount
];
memcpy
(
_pRanges
,
pRanges
,
sizeof
(
NUMTYPE
)
*
nCount
);
}
//-------------------------------------------------------------------------
SfxXRangesItem
::
SfxXRangesItem
(
sal_uInt16
nWID
,
SvStream
&
rStream
)
SfxXRangesItem
::
SfxXRangesItem
(
sal_uInt16
nWID
,
SvStream
&
rStream
)
:
SfxPoolItem
(
nWID
)
:
SfxPoolItem
(
nWID
)
{
{
NUMTYPE
nCount
;
NUMTYPE
nCount
(
0
)
;
rStream
>>
nCount
;
rStream
>>
nCount
;
_pRanges
=
new
NUMTYPE
[
nCount
+
1
];
_pRanges
=
new
NUMTYPE
[
nCount
+
1
];
for
(
NUMTYPE
n
=
0
;
n
<
nCount
;
++
n
)
for
(
NUMTYPE
n
=
0
;
n
<
nCount
;
++
n
)
...
...
unusedcode.easy
Dosyayı görüntüle @
60cf5b57
...
@@ -136,19 +136,10 @@ SfxUINT32s::Remove(unsigned short, unsigned short)
...
@@ -136,19 +136,10 @@ SfxUINT32s::Remove(unsigned short, unsigned short)
SfxUINT32s::Replace(unsigned int const&, unsigned short)
SfxUINT32s::Replace(unsigned int const&, unsigned short)
SfxUINT32s::Replace(unsigned int const*, unsigned short, unsigned short)
SfxUINT32s::Replace(unsigned int const*, unsigned short, unsigned short)
SfxUINT32s::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned int const&, void*), void*)
SfxUINT32s::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned int const&, void*), void*)
SfxUShortRangesItem::SfxUShortRangesItem(unsigned short, unsigned short const*)
Slider::SetRangeMax(long)
Slider::SetRangeMax(long)
Slider::SetRangeMin(long)
Slider::SetRangeMin(long)
Slider::Slider(Window*, ResId const&)
Slider::Slider(Window*, ResId const&)
SmFilterDetect::impl_createFactory(com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&)
SmFilterDetect::impl_createFactory(com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&)
SortedPositions::Insert(SortedPositions const*, unsigned short, unsigned short)
SortedPositions::Insert(unsigned int const&, unsigned short&)
SortedPositions::Insert(unsigned int const*, unsigned short)
SortedPositions::Remove(unsigned int const&, unsigned short)
SortedPositions::Remove(unsigned short, unsigned short)
SortedPositions_SAR::Replace(unsigned int const&, unsigned short)
SortedPositions_SAR::Replace(unsigned int const*, unsigned short, unsigned short)
SortedPositions_SAR::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned int const&, void*), void*)
SotStorage::GetProperty(String const&, String const&, com::sun::star::uno::Any&)
SotStorage::GetProperty(String const&, String const&, com::sun::star::uno::Any&)
SpanStyleManager::get(WPXString const&) const
SpanStyleManager::get(WPXString const&) const
SpinButton::SpinButton(Window*, ResId const&)
SpinButton::SpinButton(Window*, ResId const&)
...
...
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