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
0aeacaf4
Kaydet (Commit)
0aeacaf4
authored
Agu 30, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
various unused code
üst
f267b791
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
11 additions
and
89 deletions
+11
-89
app.hxx
sfx2/inc/sfx2/app.hxx
+1
-7
frmdescr.hxx
sfx2/inc/sfx2/frmdescr.hxx
+0
-1
app.cxx
sfx2/source/appl/app.cxx
+6
-10
appdde.cxx
sfx2/source/appl/appdde.cxx
+4
-43
frmdescr.cxx
sfx2/source/doc/frmdescr.cxx
+0
-6
property.cxx
svtools/source/dialogs/property.cxx
+0
-4
property.hxx
svtools/source/inc/property.hxx
+0
-1
unusedcode.easy
unusedcode.easy
+0
-17
No files found.
sfx2/inc/sfx2/app.hxx
Dosyayı görüntüle @
0aeacaf4
...
...
@@ -167,13 +167,7 @@ public:
// DDE
long
DdeExecute
(
const
String
&
rCmd
);
long
DdeGetData
(
const
String
&
rItem
,
const
String
&
rMimeType
,
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
);
long
DdeSetData
(
const
String
&
rItem
,
const
String
&
rMimeType
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
);
sal_Bool
InitializeDde
();
sal_Bool
InitializeDde
();
const
DdeService
*
GetDdeService
()
const
;
DdeService
*
GetDdeService
();
void
AddDdeTopic
(
SfxObjectShell
*
);
...
...
sfx2/inc/sfx2/frmdescr.hxx
Dosyayı görüntüle @
0aeacaf4
...
...
@@ -113,7 +113,6 @@ public:
{
return
aActualURL
;
}
void
SetActualURL
(
const
INetURLObject
&
rURL
);
void
SetActualURL
(
const
String
&
rURL
);
sal_Bool
CheckContent
()
const
;
void
SetReadOnly
(
sal_Bool
bSet
)
{
bReadOnly
=
bSet
;}
sal_Bool
IsReadOnly
(
)
const
{
return
bReadOnly
;}
void
SetEditable
(
sal_Bool
bSet
);
...
...
sfx2/source/appl/app.cxx
Dosyayı görüntüle @
0aeacaf4
...
...
@@ -121,10 +121,6 @@
#include <sfx2/mnuitem.hxx>
#endif
#if defined( WNT )
#define DDE_AVAILABLE
#endif
#include <unotools/saveopt.hxx>
#include <unotools/undoopt.hxx>
#include <svtools/helpopt.hxx>
...
...
@@ -323,11 +319,10 @@ SfxApplication::SfxApplication()
RTL_LOGFILE_CONTEXT_TRACE
(
aLog
,
"{ initialize DDE"
);
#ifdef DDE_AVAILABLE
#ifndef DBG_UTIL
InitializeDde
();
#else
if
(
!
InitializeDde
()
)
sal_Bool
bOk
=
InitializeDde
();
#ifdef DBG_UTIL
if
(
!
bOk
)
{
rtl
::
OStringBuffer
aStr
(
RTL_CONSTASCII_STRINGPARAM
(
"No DDE-Service possible. Error: "
));
...
...
@@ -337,7 +332,8 @@ SfxApplication::SfxApplication()
aStr
.
append
(
'?'
);
DBG_ASSERT
(
sal_False
,
aStr
.
getStr
()
);
}
#endif
#else
(
void
)
bOk
;
#endif
pSfxHelp
=
new
SfxHelp
;
...
...
sfx2/source/appl/appdde.cxx
Dosyayı görüntüle @
0aeacaf4
...
...
@@ -201,48 +201,6 @@ long SfxApplication::DdeExecute
return
1
;
}
//--------------------------------------------------------------------
long
SfxApplication
::
DdeGetData
(
const
String
&
,
// the Item to be addressed
const
String
&
,
// in: Format
::
com
::
sun
::
star
::
uno
::
Any
&
// out: requested data
)
/* [Description]
This method can be overloaded by application developers, to receive
DDE-data-requests directed to thier SfxApplication subclass.
The base implementation provides no data and returns 0.
*/
{
return
0
;
}
//--------------------------------------------------------------------
long
SfxApplication
::
DdeSetData
(
const
String
&
,
// the Item to be addressed
const
String
&
,
// in: Format
const
::
com
::
sun
::
star
::
uno
::
Any
&
// out: requested data
)
/* [Description]
This method can be overloaded by application developers, to receive
DDE-data directed to thier SfxApplication subclass.
The base implementation is not receiving any data and returns 0.
*/
{
return
0
;
}
long
SfxObjectShell
::
DdeExecute
(
const
String
&
rCmd
// Expressed in our BASIC-Syntax
...
...
@@ -436,11 +394,13 @@ long SfxViewFrame::DdeSetData
sal_Bool
SfxApplication
::
InitializeDde
()
{
int
nError
=
0
;
#if defined( WNT )
DBG_ASSERT
(
!
pAppData_Impl
->
pDdeService
,
"Dde can not be initialized multiple times"
);
pAppData_Impl
->
pDdeService
=
new
ImplDdeService
(
Application
::
GetAppName
()
);
int
nError
=
pAppData_Impl
->
pDdeService
->
GetError
();
nError
=
pAppData_Impl
->
pDdeService
->
GetError
();
if
(
!
nError
)
{
pAppData_Impl
->
pDocTopics
=
new
SfxDdeDocTopics_Impl
;
...
...
@@ -458,6 +418,7 @@ sal_Bool SfxApplication::InitializeDde()
pAppData_Impl
->
pTriggerTopic
=
new
SfxDdeTriggerTopic_Impl
;
pAppData_Impl
->
pDdeService2
->
AddTopic
(
*
pAppData_Impl
->
pTriggerTopic
);
}
#endif
return
!
nError
;
}
...
...
sfx2/source/doc/frmdescr.cxx
Dosyayı görüntüle @
0aeacaf4
...
...
@@ -119,12 +119,6 @@ sal_Bool SfxFrameDescriptor::IsEditable() const
return
pImp
->
bEditable
;
}
sal_Bool
SfxFrameDescriptor
::
CheckContent
()
const
{
sal_Bool
bRet
=
!
(
aURL
==
aActualURL
);
return
bRet
;
}
SfxFrameDescriptor
*
SfxFrameDescriptor
::
Clone
(
sal_Bool
bWithIds
)
const
{
SfxFrameDescriptor
*
pFrame
=
new
SfxFrameDescriptor
;
...
...
svtools/source/dialogs/property.cxx
Dosyayı görüntüle @
0aeacaf4
...
...
@@ -563,10 +563,6 @@ void SvPropertyLine::HideXButton()
aXButton
.
Hide
();
Resize
();
}
sal_Bool
SvPropertyLine
::
IsVisibleXButton
()
{
return
bHasXButton
;
}
void
SvPropertyLine
::
ShowAsHyperLink
(
sal_Bool
nFlag
)
{
...
...
svtools/source/inc/property.hxx
Dosyayı görüntüle @
0aeacaf4
...
...
@@ -261,7 +261,6 @@ public:
void
ShowXButton
();
void
HideXButton
();
sal_Bool
IsVisibleXButton
();
void
ShowAsHyperLink
(
sal_Bool
nFlag
=
sal_True
);
sal_Bool
IsShownAsHyperlink
();
...
...
unusedcode.easy
Dosyayı görüntüle @
0aeacaf4
...
...
@@ -763,10 +763,7 @@ SetOfByte::GetClearCount() const
SetOfByte::GetSetBit(unsigned short) const
SetOfByte::IsFull() const
SfxAppMenuControl_Impl::RegisterControl(unsigned short, SfxModule*)
SfxApplication::DdeGetData(String const&, String const&, com::sun::star::uno::Any&)
SfxApplication::DdeSetData(String const&, String const&, com::sun::star::uno::Any const&)
SfxApplication::EnterAsynchronCall_Impl()
SfxApplication::InitializeDde()
SfxApplication::LeaveAsynchronCall_Impl()
SfxApplication::Main()
SfxBasicManagerHolder::isAnyContainerModified() const
...
...
@@ -794,7 +791,6 @@ SfxFoundCacheArr_Impl::Remove(SfxFoundCache_Impl const*&, unsigned short)
SfxFoundCacheArr_Impl::Remove(unsigned short, unsigned short)
SfxFrame::GetBroadcaster() const
SfxFrame::IsTop() const
SfxFrameDescriptor::CheckContent() const
SfxFrameDescriptor::GetItemPos() const
SfxFrameDescriptor::GetSize() const
SfxFrameDescriptor::GetWallpaper() const
...
...
@@ -809,7 +805,6 @@ SfxItemPropertySetInfo::getMap() const
SfxItemSetHint::SfxItemSetHint(SfxItemSet*)
SfxListener::EndListening(unsigned short)
SfxLockBytesItem::SfxLockBytesItem(unsigned short, SvLockBytes*)
SfxMacro::GenerateSource() const
SfxMacro::GetMode() const
SfxMacro::Record(SfxMacroStatement*)
SfxMacro::Remove()
...
...
@@ -949,7 +944,6 @@ SvPropertyBox::SvPropertyBox(Window*, long)
SvPropertyLine::GetName() const
SvPropertyLine::IsLineLocked()
SvPropertyLine::IsShownAsHyperlink()
SvPropertyLine::IsVisibleXButton()
SvPropertyLine::SvPropertyLine(Window*, ResId const&)
SvPtrarr::Replace(void* const*, unsigned short, unsigned short)
SvStringsISort::DeleteAndDestroy(unsigned short, unsigned short)
...
...
@@ -1865,7 +1859,6 @@ binfilter::EECharAttribArray::Remove(unsigned short, unsigned short)
binfilter::EECharAttribArray::Replace(binfilter::EECharAttrib const&, unsigned short)
binfilter::EECharAttribArray::Replace(binfilter::EECharAttrib const*, unsigned short, unsigned short)
binfilter::EECharAttribArray::_ForEach(unsigned short, unsigned short, unsigned char (*)(binfilter::EECharAttrib const&, void*), void*)
binfilter::EditEngine::IsModified() const
binfilter::GeometryIndexValueBucketMemArr::Insert(binfilter::GeometryIndexValueBucketMemArr const*, unsigned short, unsigned short, unsigned short)
binfilter::GeometryIndexValueBucketMemArr::Replace(char const*&, unsigned short)
binfilter::GeometryIndexValueBucketMemArr::Replace(char const**, unsigned short, unsigned short)
...
...
@@ -1884,7 +1877,6 @@ binfilter::OUStringsSort_Impl::Remove(unsigned short, unsigned short)
binfilter::PCodeBuffConvertor<unsigned int, unsigned short>::GetBuffer()
binfilter::PCodeBuffConvertor<unsigned int, unsigned short>::GetSize()
binfilter::PCodeBuffConvertor<unsigned int, unsigned short>::PCodeBuffConvertor(unsigned char*, unsigned int)
binfilter::ReadThroughComponent(binfilter::SvStorage*, com::sun::star::uno::Reference<com::sun::star::lang::XComponent>, char const*, char const*, com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory>&, char const*, com::sun::star::uno::Sequence<com::sun::star::uno::Any>, rtl::OUString const&, unsigned char)
binfilter::Registration::~Registration()
binfilter::SaveBookmarks::DeleteAndDestroy(unsigned short, unsigned short)
binfilter::SbiGlobals::~SbiGlobals()
...
...
@@ -1909,7 +1901,6 @@ binfilter::ScConditionalFormats_Impl::Insert(binfilter::ScConditionalFormat* con
binfilter::ScConditionalFormats_Impl::Insert(binfilter::ScConditionalFormats_Impl const*, unsigned short, unsigned short)
binfilter::ScConditionalFormats_Impl::Remove(binfilter::ScConditionalFormat* const&, unsigned short)
binfilter::ScConditionalFormats_Impl::Remove(unsigned short, unsigned short)
binfilter::ScFieldChangerEditEngine::ScFieldChangerEditEngine(binfilter::SfxItemPool*, unsigned char)
binfilter::ScMultipleWriteHeader::ScMultipleWriteHeader(SvStream&, unsigned int)
binfilter::ScMultipleWriteHeader::~ScMultipleWriteHeader()
binfilter::ScMyContentAction::~ScMyContentAction()
...
...
@@ -1922,15 +1913,11 @@ binfilter::ScValidationEntries_Impl::Insert(binfilter::ScValidationData* const*,
binfilter::ScValidationEntries_Impl::Insert(binfilter::ScValidationEntries_Impl const*, unsigned short, unsigned short)
binfilter::ScValidationEntries_Impl::Remove(binfilter::ScValidationData* const&, unsigned short)
binfilter::ScValidationEntries_Impl::Remove(unsigned short, unsigned short)
binfilter::ScViewData::ReadUserDataSequence(com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&)
binfilter::ScXMLImportWrapper::ScXMLImportWrapper(binfilter::ScDocument&, binfilter::SfxMedium*, binfilter::SvStorage*)
binfilter::SchXMLWrapper::SchXMLWrapper(com::sun::star::uno::Reference<com::sun::star::frame::XModel>&, binfilter::SvStorage&, unsigned char)
binfilter::ScriptTypePosInfos::Insert(binfilter::ScriptTypePosInfos const*, unsigned short, unsigned short, unsigned short)
binfilter::ScriptTypePosInfos::Replace(binfilter::ScriptTypePosInfo const&, unsigned short)
binfilter::ScriptTypePosInfos::Replace(binfilter::ScriptTypePosInfo const*, unsigned short, unsigned short)
binfilter::ScriptTypePosInfos::_ForEach(unsigned short, unsigned short, unsigned char (*)(binfilter::ScriptTypePosInfo const&, void*), void*)
binfilter::SdXMLFilter::SdXMLFilter(binfilter::SfxMedium&, binfilter::SdDrawDocShell&, unsigned char, binfilter::SdXMLFilterMode)
binfilter::SdrMarkList::InsertEntry(binfilter::SdrMark const&, bool)
binfilter::SdrUnoControlAccessArr::DeleteAndDestroy(unsigned short, unsigned short)
binfilter::SdrUnoControlAccessArr::Insert(binfilter::SdrUnoControlAccess* const&, unsigned short&)
binfilter::SdrUnoControlAccessArr::Insert(binfilter::SdrUnoControlAccess* const*, unsigned short)
...
...
@@ -1941,11 +1928,9 @@ binfilter::SfxItemModifyArr_Impl::Remove(unsigned short, unsigned short)
binfilter::SfxItemModifyArr_Impl::Replace(binfilter::SfxItemModifyImpl const&, unsigned short)
binfilter::SfxItemModifyArr_Impl::Replace(binfilter::SfxItemModifyImpl const*, unsigned short, unsigned short)
binfilter::SfxItemModifyArr_Impl::_ForEach(unsigned short, unsigned short, unsigned char (*)(binfilter::SfxItemModifyImpl const&, void*), void*)
binfilter::SfxMultiVarRecordWriter::SfxMultiVarRecordWriter(unsigned char, SvStream*, unsigned short, unsigned char)
binfilter::SfxPtrArr::Insert(unsigned short, void*)
binfilter::SfxPtrArr::Remove(void*)
binfilter::SfxPtrArr::Replace(void*, void*)
binfilter::SfxSingleRecordWriter::SfxSingleRecordWriter(SvStream*, unsigned short, unsigned char)
binfilter::SfxUINT32s::Insert(binfilter::SfxUINT32s const*, unsigned short, unsigned short, unsigned short)
binfilter::SfxUINT32s::Remove(unsigned short, unsigned short)
binfilter::SfxUINT32s::Replace(unsigned int const&, unsigned short)
...
...
@@ -1973,8 +1958,6 @@ binfilter::SvBytes::Insert(binfilter::SvBytes const*, unsigned short, unsigned s
binfilter::SvBytes::Replace(unsigned char const&, unsigned short)
binfilter::SvBytes::Replace(unsigned char const*, unsigned short, unsigned short)
binfilter::SvBytes::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned char const&, void*), void*)
binfilter::SvDataPipe_Impl::addMark(unsigned int)
binfilter::SvDataPipe_Impl::removeMark(unsigned int)
binfilter::SvI18NMap_Impl::Insert(binfilter::SvI18NMapEntry_Impl* const&, unsigned short&)
binfilter::SvI18NMap_Impl::Insert(binfilter::SvI18NMapEntry_Impl* const*, unsigned short)
binfilter::SvI18NMap_Impl::Insert(binfilter::SvI18NMap_Impl const*, unsigned short, unsigned short)
...
...
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