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
0d793232
Kaydet (Commit)
0d793232
authored
Ock 11, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: ditch unused childat
üst
4f00cdfe
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
36 deletions
+0
-36
unusedcode.easy
unusedcode.easy
+0
-1
buffernode.cxx
xmlsecurity/source/framework/buffernode.cxx
+0
-34
buffernode.hxx
xmlsecurity/source/framework/buffernode.hxx
+0
-1
No files found.
unusedcode.easy
Dosyayı görüntüle @
0d793232
AtomDocument::AtomDocument(AtomPubSession*, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)
AtomFolder::AtomFolder(AtomPubSession*, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)
AtomPubSession::getCollectionUrl(Collection::Type)
BufferNode::childAt(int) const
ByteString::Assign(char const*, unsigned short)
ByteString::Assign(char)
ByteString::ByteString(char const*, unsigned short)
...
...
xmlsecurity/source/framework/buffernode.cxx
Dosyayı görüntüle @
0d793232
...
...
@@ -537,40 +537,6 @@ sal_Int32 BufferNode::indexOfChild(const BufferNode* pChild) const
return
nIndex
;
}
const
BufferNode
*
BufferNode
::
childAt
(
sal_Int32
nIndex
)
const
/****** BufferNode/childAt ***************************************************
*
* NAME
* childAt -- retrieves the child BufferNode at specific possition.
*
* SYNOPSIS
* child = childAt(nIndex);
*
* FUNCTION
* see NAME
*
* INPUTS
* nIndex - the index of the child BufferNode to be retrieved
*
* RESULT
* child - the child BufferNode at index position, or NULL if the index
* is out of the range of children.
*
* AUTHOR
* Michael Mi
* Email: michael.mi@sun.com
******************************************************************************/
{
BufferNode
*
rc
=
NULL
;
if
(
nIndex
<
((
sal_Int32
)
m_vChildren
.
size
())
&&
nIndex
>=
0
)
{
rc
=
(
BufferNode
*
)
m_vChildren
[
nIndex
];
}
return
(
const
BufferNode
*
)
rc
;
}
const
BufferNode
*
BufferNode
::
getParent
()
const
{
return
m_pParent
;
...
...
xmlsecurity/source/framework/buffernode.hxx
Dosyayı görüntüle @
0d793232
...
...
@@ -114,7 +114,6 @@ public:
void
addChild
(
const
BufferNode
*
pChild
);
void
removeChild
(
const
BufferNode
*
pChild
);
sal_Int32
indexOfChild
(
const
BufferNode
*
pChild
)
const
;
const
BufferNode
*
childAt
(
sal_Int32
nIndex
)
const
;
const
BufferNode
*
getParent
()
const
;
void
setParent
(
const
BufferNode
*
pParent
);
const
BufferNode
*
getNextSibling
()
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