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
3b238706
Kaydet (Commit)
3b238706
authored
Kas 14, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: remove another layer of binfilter-released methods
Change-Id: Id5bedd660b2ada460ffc48ce28d4f8ab9cd89226
üst
f44928cb
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
80 deletions
+0
-80
stg.hxx
sot/inc/sot/stg.hxx
+0
-1
ucbstorage.cxx
sot/source/sdstor/ucbstorage.cxx
+0
-27
treelistentry.hxx
svtools/inc/svtools/treelistentry.hxx
+0
-3
treelistentry.cxx
svtools/source/contnr/treelistentry.cxx
+0
-10
inetmime.hxx
tools/inc/tools/inetmime.hxx
+0
-3
inetmime.cxx
tools/source/inet/inetmime.cxx
+0
-31
unusedcode.easy
unusedcode.easy
+0
-5
No files found.
sot/inc/sot/stg.hxx
Dosyayı görüntüle @
3b238706
...
...
@@ -351,7 +351,6 @@ public:
virtual
sal_Bool
ValidateMode
(
StreamMode
)
const
;
virtual
const
SvStream
*
GetSvStream
()
const
;
virtual
sal_Bool
Equals
(
const
BaseStorage
&
rStream
)
const
;
sal_Bool
SetProperty
(
const
String
&
rName
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
);
sal_Bool
GetProperty
(
const
String
&
rEleName
,
const
String
&
rName
,
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
);
UCBStorageElement_Impl
*
FindElement_Impl
(
const
String
&
rName
)
const
;
...
...
sot/source/sdstor/ucbstorage.cxx
Dosyayı görüntüle @
3b238706
...
...
@@ -3253,31 +3253,4 @@ String UCBStorage::CreateLinkFile( const String& rName )
return
String
();
}
sal_Bool
UCBStorage
::
SetProperty
(
const
String
&
rName
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
)
{
if
(
rName
.
CompareToAscii
(
"Title"
)
==
COMPARE_EQUAL
)
return
sal_False
;
if
(
rName
.
CompareToAscii
(
"MediaType"
)
==
COMPARE_EQUAL
)
{
::
rtl
::
OUString
aTmp
;
rValue
>>=
aTmp
;
pImp
->
m_aContentType
=
aTmp
;
}
try
{
if
(
pImp
->
GetContent
()
)
{
pImp
->
m_pContent
->
setPropertyValue
(
rName
,
rValue
);
return
sal_True
;
}
}
catch
(
const
Exception
&
)
{
}
return
sal_False
;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
svtools/inc/svtools/treelistentry.hxx
Dosyayı görüntüle @
3b238706
...
...
@@ -81,9 +81,6 @@ public:
bool
HasChildListPos
()
const
;
sal_uLong
GetChildListPos
()
const
;
SvTreeListEntries
&
GetChildEntries
();
const
SvTreeListEntries
&
GetChildEntries
()
const
;
void
Clone
(
SvTreeListEntry
*
pSource
);
size_t
ItemCount
()
const
;
...
...
svtools/source/contnr/treelistentry.cxx
Dosyayı görüntüle @
3b238706
...
...
@@ -106,16 +106,6 @@ sal_uLong SvTreeListEntry::GetChildListPos() const
return
(
nListPos
&
0x7fffffff
);
}
SvTreeListEntries
&
SvTreeListEntry
::
GetChildEntries
()
{
return
maChildren
;
}
const
SvTreeListEntries
&
SvTreeListEntry
::
GetChildEntries
()
const
{
return
maChildren
;
}
void
SvTreeListEntry
::
Clone
(
SvTreeListEntry
*
pSource
)
{
nListPos
&=
0x80000000
;
...
...
tools/inc/tools/inetmime.hxx
Dosyayı görüntüle @
3b238706
...
...
@@ -414,9 +414,6 @@ public:
pBegin
,
const
sal_Unicode
*
pEnd
);
static
const
sal_Char
*
skipComment
(
const
sal_Char
*
pBegin
,
const
sal_Char
*
pEnd
);
static
const
sal_Unicode
*
skipComment
(
const
sal_Unicode
*
pBegin
,
const
sal_Unicode
*
pEnd
);
...
...
tools/source/inet/inetmime.cxx
Dosyayı görüntüle @
3b238706
...
...
@@ -512,37 +512,6 @@ const sal_Unicode * INetMIME::skipLinearWhiteSpace(const sal_Unicode * pBegin,
return
pBegin
;
}
// static
const
sal_Char
*
INetMIME
::
skipComment
(
const
sal_Char
*
pBegin
,
const
sal_Char
*
pEnd
)
{
DBG_ASSERT
(
pBegin
&&
pBegin
<=
pEnd
,
"INetMIME::skipComment(): Bad sequence"
);
if
(
pBegin
!=
pEnd
&&
*
pBegin
==
'('
)
{
sal_uInt32
nLevel
=
0
;
for
(
const
sal_Char
*
p
=
pBegin
;
p
!=
pEnd
;)
switch
(
*
p
++
)
{
case
'('
:
++
nLevel
;
break
;
case
')'
:
if
(
--
nLevel
==
0
)
return
p
;
break
;
case
'\\'
:
if
(
p
!=
pEnd
)
++
p
;
break
;
}
}
return
pBegin
;
}
// static
const
sal_Unicode
*
INetMIME
::
skipComment
(
const
sal_Unicode
*
pBegin
,
const
sal_Unicode
*
pEnd
)
...
...
unusedcode.easy
Dosyayı görüntüle @
3b238706
...
...
@@ -12,8 +12,6 @@ ScVbaFormat<ooo::vba::excel::XStyle>::setAddIndent(com::sun::star::uno::Any cons
String::String(unsigned short)
SvListView::GetModel() const
SvTreeList::GetChildIterators(SvTreeListEntry const*) const
SvTreeListEntry::GetChildEntries()
SvTreeListEntry::GetChildEntries() const
SvtGraphicStroke::toString() const
TextEngine::GetLeftMargin() const
ThumbnailViewItemAcc::FireAccessibleEvent(short, com::sun::star::uno::Any const&, com::sun::star::uno::Any const&)
...
...
@@ -45,12 +43,9 @@ comphelper::detail::ConfigurationWrapper::getGroupReadWrite(boost::shared_ptr<co
comphelper::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString const&) const
comphelper::detail::ConfigurationWrapper::setLocalizedPropertyValue(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&, com::sun::star::uno::Any const&) const
connectivity::file::OStatement_Base::reset()
connectivity::mork::MQueryHelper::next()
connectivity::mork::MQueryHelperResultEntry::insert(rtl::OString const&, rtl::OUString&)
connectivity::mork::OColumnAlias::OColumnAlias()
connectivity::sdbcx::OGroup::OGroup(rtl::OUString const&, unsigned char)
connectivity::sdbcx::OGroup::OGroup(unsigned char)
dbtools::getConnection(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&)
framework::OReadMenuDocumentHandler::getServiceFactory()
jfw_plugin::VendorBase::createInstance()
oox::drawingml::TextListStyle::dump() 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