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
47716efc
Kaydet (Commit)
47716efc
authored
Şub 10, 2012
tarafından
Elton Chung
Kaydeden (comit)
Michael Meeks
Şub 13, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused code
üst
952b4657
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
106 deletions
+0
-106
svdobj.hxx
svx/inc/svx/svdobj.hxx
+0
-6
svdsob.hxx
svx/inc/svx/svdsob.hxx
+0
-4
svdlayer.cxx
svx/source/svdraw/svdlayer.cxx
+0
-54
svdobj.cxx
svx/source/svdraw/svdobj.cxx
+0
-32
unusedcode.easy
unusedcode.easy
+0
-10
No files found.
svx/inc/svx/svdobj.hxx
Dosyayı görüntüle @
47716efc
...
@@ -962,16 +962,10 @@ public:
...
@@ -962,16 +962,10 @@ public:
bool
IsEdgeObj
()
const
;
bool
IsEdgeObj
()
const
;
bool
Is3DObj
()
const
;
bool
Is3DObj
()
const
;
bool
IsUnoObj
()
const
;
bool
IsUnoObj
()
const
;
bool
IsMasterCachable
()
const
;
bool
ShareLock
();
void
ShareUnlock
();
bool
IsShareLock
()
const
;
void
SetMarkProtect
(
bool
bProt
);
void
SetMarkProtect
(
bool
bProt
);
bool
IsMarkProtect
()
const
;
bool
IsMarkProtect
()
const
;
void
SetInserted
(
bool
bIns
);
void
SetInserted
(
bool
bIns
);
bool
IsInserted
()
const
;
bool
IsInserted
()
const
;
void
SetGrouped
(
bool
bGrp
);
bool
IsGrouped
()
const
;
void
SetMoveProtect
(
bool
bProt
);
void
SetMoveProtect
(
bool
bProt
);
bool
IsMoveProtect
()
const
;
bool
IsMoveProtect
()
const
;
void
SetResizeProtect
(
bool
bProt
);
void
SetResizeProtect
(
bool
bProt
);
...
...
svx/inc/svx/svdsob.hxx
Dosyayı görüntüle @
47716efc
...
@@ -95,12 +95,8 @@ public:
...
@@ -95,12 +95,8 @@ public:
}
}
sal_Bool
IsEmpty
()
const
;
sal_Bool
IsEmpty
()
const
;
sal_Bool
IsFull
()
const
;
sal_uInt16
GetSetCount
()
const
;
sal_uInt16
GetSetCount
()
const
;
sal_uInt8
GetSetBit
(
sal_uInt16
nNum
)
const
;
sal_uInt16
GetClearCount
()
const
;
sal_uInt8
GetClearBit
(
sal_uInt16
nNum
)
const
;
void
operator
&=
(
const
SetOfByte
&
r2ndSet
);
void
operator
&=
(
const
SetOfByte
&
r2ndSet
);
void
operator
|=
(
const
SetOfByte
&
r2ndSet
);
void
operator
|=
(
const
SetOfByte
&
r2ndSet
);
...
...
svx/source/svdraw/svdlayer.cxx
Dosyayı görüntüle @
47716efc
...
@@ -48,17 +48,6 @@ sal_Bool SetOfByte::IsEmpty() const
...
@@ -48,17 +48,6 @@ sal_Bool SetOfByte::IsEmpty() const
return
sal_True
;
return
sal_True
;
}
}
sal_Bool
SetOfByte
::
IsFull
()
const
{
for
(
sal_uInt16
i
(
0
);
i
<
32
;
i
++
)
{
if
(
aData
[
i
]
!=
0xFF
)
return
sal_False
;
}
return
sal_True
;
}
sal_uInt16
SetOfByte
::
GetSetCount
()
const
sal_uInt16
SetOfByte
::
GetSetCount
()
const
{
{
sal_uInt16
nRet
(
0
);
sal_uInt16
nRet
(
0
);
...
@@ -83,49 +72,6 @@ sal_uInt16 SetOfByte::GetSetCount() const
...
@@ -83,49 +72,6 @@ sal_uInt16 SetOfByte::GetSetCount() const
return
nRet
;
return
nRet
;
}
}
sal_uInt8
SetOfByte
::
GetSetBit
(
sal_uInt16
nNum
)
const
{
nNum
++
;
sal_uInt16
i
(
0
),
j
(
0
);
sal_uInt16
nRet
(
0
);
while
(
j
<
nNum
&&
i
<
256
)
{
if
(
IsSet
(
sal_uInt8
(
i
)))
j
++
;
i
++
;
}
if
(
j
==
nNum
)
nRet
=
i
-
1
;
return
sal_uInt8
(
nRet
);
}
sal_uInt16
SetOfByte
::
GetClearCount
()
const
{
return
sal_uInt16
(
256
-
GetSetCount
());
}
sal_uInt8
SetOfByte
::
GetClearBit
(
sal_uInt16
nNum
)
const
{
nNum
++
;
sal_uInt16
i
(
0
),
j
(
0
);
sal_uInt16
nRet
(
0
);
while
(
j
<
nNum
&&
i
<
256
)
{
if
(
!
IsSet
(
sal_uInt8
(
i
)))
j
++
;
i
++
;
}
if
(
j
==
nNum
)
nRet
=
i
-
1
;
return
sal_uInt8
(
nRet
);
}
void
SetOfByte
::
operator
&=
(
const
SetOfByte
&
r2ndSet
)
void
SetOfByte
::
operator
&=
(
const
SetOfByte
&
r2ndSet
)
{
{
for
(
sal_uInt16
i
(
0
);
i
<
32
;
i
++
)
for
(
sal_uInt16
i
(
0
);
i
<
32
;
i
++
)
...
...
svx/source/svdraw/svdobj.cxx
Dosyayı görüntüle @
47716efc
...
@@ -2588,28 +2588,6 @@ bool SdrObject::IsUnoObj() const
...
@@ -2588,28 +2588,6 @@ bool SdrObject::IsUnoObj() const
return
bIsUnoObj
;
return
bIsUnoObj
;
}
}
bool
SdrObject
::
IsMasterCachable
()
const
{
return
!
bNotMasterCachable
;
}
bool
SdrObject
::
ShareLock
()
{
bool
r
=
!
bNetLock
;
bNetLock
=
true
;
return
r
;
}
void
SdrObject
::
ShareUnlock
()
{
bNetLock
=
false
;
}
bool
SdrObject
::
IsShareLock
()
const
{
return
bNetLock
;
}
void
SdrObject
::
SetMarkProtect
(
bool
bProt
)
void
SdrObject
::
SetMarkProtect
(
bool
bProt
)
{
{
bMarkProt
=
bProt
;
bMarkProt
=
bProt
;
...
@@ -2625,16 +2603,6 @@ bool SdrObject::IsInserted() const
...
@@ -2625,16 +2603,6 @@ bool SdrObject::IsInserted() const
return
bInserted
;
return
bInserted
;
}
}
void
SdrObject
::
SetGrouped
(
bool
bGrp
)
{
bGrouped
=
bGrp
;
}
bool
SdrObject
::
IsGrouped
()
const
{
return
bGrouped
;
}
bool
SdrObject
::
IsMoveProtect
()
const
bool
SdrObject
::
IsMoveProtect
()
const
{
{
return
bMovProt
;
return
bMovProt
;
...
...
unusedcode.easy
Dosyayı görüntüle @
47716efc
...
@@ -195,22 +195,12 @@ ScaList::Insert(void*, unsigned int)
...
@@ -195,22 +195,12 @@ ScaList::Insert(void*, unsigned int)
ScrollBarBox::ScrollBarBox(Window*, ResId const&)
ScrollBarBox::ScrollBarBox(Window*, ResId const&)
ScrollableWindow::MakeVisible(Rectangle const&, unsigned char)
ScrollableWindow::MakeVisible(Rectangle const&, unsigned char)
SdFilterDetect::impl_createFactory(com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&)
SdFilterDetect::impl_createFactory(com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&)
SdrObject::IsGrouped() const
SdrObject::IsMasterCachable() const
SdrObject::IsShareLock() const
SdrObject::SetGrouped(bool)
SdrObject::ShareLock()
SdrObject::ShareUnlock()
SectReprArr::Insert(SectRepr* const&, unsigned short&)
SectReprArr::Insert(SectRepr* const&, unsigned short&)
SectReprArr::Insert(SectRepr* const*, unsigned short)
SectReprArr::Insert(SectRepr* const*, unsigned short)
SectReprArr::Insert(SectReprArr const*, unsigned short, unsigned short)
SectReprArr::Insert(SectReprArr const*, unsigned short, unsigned short)
SectReprArr::Remove(SectRepr* const&, unsigned short)
SectReprArr::Remove(SectRepr* const&, unsigned short)
SectReprArr::Remove(unsigned short, unsigned short)
SectReprArr::Remove(unsigned short, unsigned short)
SecurityEnvironment_NssImpl::getImplementation(com::sun::star::uno::Reference<com::sun::star::uno::XInterface>)
SecurityEnvironment_NssImpl::getImplementation(com::sun::star::uno::Reference<com::sun::star::uno::XInterface>)
SetOfByte::GetClearBit(unsigned short) const
SetOfByte::GetClearCount() const
SetOfByte::GetSetBit(unsigned short) const
SetOfByte::IsFull() const
SfxAppMenuControl_Impl::RegisterControl(unsigned short, SfxModule*)
SfxAppMenuControl_Impl::RegisterControl(unsigned short, SfxModule*)
SfxApplication::Main()
SfxApplication::Main()
SfxBrushItemLink::Set(SfxBrushItemLink*)
SfxBrushItemLink::Set(SfxBrushItemLink*)
...
...
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