callcatcher: remove some unused methods
This commit is contained in:
@@ -308,7 +308,6 @@ public:
|
|||||||
SfxBroadcaster* pBroadcast; // Broadcaster, falls dieses Obj referenziert wird (bVirtObj=sal_True). Auch fuer Konnektoren etc.
|
SfxBroadcaster* pBroadcast; // Broadcaster, falls dieses Obj referenziert wird (bVirtObj=sal_True). Auch fuer Konnektoren etc.
|
||||||
SdrObjUserDataList* pUserDataList; // applikationsspeziefische Daten
|
SdrObjUserDataList* pUserDataList; // applikationsspeziefische Daten
|
||||||
SdrGluePointList* pGluePoints; // Klebepunkte zum Ankleben von Objektverbindern
|
SdrGluePointList* pGluePoints; // Klebepunkte zum Ankleben von Objektverbindern
|
||||||
AutoTimer* pAutoTimer;
|
|
||||||
|
|
||||||
// #i68101#
|
// #i68101#
|
||||||
// object name, title and description
|
// object name, title and description
|
||||||
@@ -316,9 +315,6 @@ public:
|
|||||||
String aObjTitle;
|
String aObjTitle;
|
||||||
String aObjDescription;
|
String aObjDescription;
|
||||||
|
|
||||||
// Name to be used by applications
|
|
||||||
XubString aHTMLName;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
TYPEINFO();
|
TYPEINFO();
|
||||||
SdrObjPlusData();
|
SdrObjPlusData();
|
||||||
@@ -613,10 +609,6 @@ public:
|
|||||||
void SetDescription(const String& rStr);
|
void SetDescription(const String& rStr);
|
||||||
String GetDescription() const;
|
String GetDescription() const;
|
||||||
|
|
||||||
// support for HTMLName
|
|
||||||
void SetHTMLName(const String& rStr);
|
|
||||||
String GetHTMLName() const;
|
|
||||||
|
|
||||||
// Fuer Gruppenobjekte
|
// Fuer Gruppenobjekte
|
||||||
sal_Bool IsGroupObject() const { return GetSubList()!=NULL; }
|
sal_Bool IsGroupObject() const { return GetSubList()!=NULL; }
|
||||||
virtual SdrObjList* GetSubList() const;
|
virtual SdrObjList* GetSubList() const;
|
||||||
@@ -657,10 +649,6 @@ public:
|
|||||||
*/
|
*/
|
||||||
void SetNavigationPosition (const sal_uInt32 nPosition);
|
void SetNavigationPosition (const sal_uInt32 nPosition);
|
||||||
|
|
||||||
const AutoTimer* GetAutoTimer() const { return pPlusData!=NULL ? pPlusData->pAutoTimer : NULL; }
|
|
||||||
AutoTimer* GetAutoTimer() { return pPlusData!=NULL ? pPlusData->pAutoTimer : NULL; }
|
|
||||||
AutoTimer* ForceAutoTimer();
|
|
||||||
|
|
||||||
// #111111#
|
// #111111#
|
||||||
// To make clearer that this method may trigger RecalcBoundRect and thus may be
|
// To make clearer that this method may trigger RecalcBoundRect and thus may be
|
||||||
// expensive and somtimes problematic (inside a bigger object change You will get
|
// expensive and somtimes problematic (inside a bigger object change You will get
|
||||||
|
@@ -239,8 +239,7 @@ TYPEINIT0(SdrObjPlusData);
|
|||||||
SdrObjPlusData::SdrObjPlusData():
|
SdrObjPlusData::SdrObjPlusData():
|
||||||
pBroadcast(NULL),
|
pBroadcast(NULL),
|
||||||
pUserDataList(NULL),
|
pUserDataList(NULL),
|
||||||
pGluePoints(NULL),
|
pGluePoints(NULL)
|
||||||
pAutoTimer(NULL)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -249,7 +248,6 @@ SdrObjPlusData::~SdrObjPlusData()
|
|||||||
if (pBroadcast !=NULL) delete pBroadcast;
|
if (pBroadcast !=NULL) delete pBroadcast;
|
||||||
if (pUserDataList!=NULL) delete pUserDataList;
|
if (pUserDataList!=NULL) delete pUserDataList;
|
||||||
if (pGluePoints !=NULL) delete pGluePoints;
|
if (pGluePoints !=NULL) delete pGluePoints;
|
||||||
if (pAutoTimer !=NULL) delete pAutoTimer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SdrObjPlusData* SdrObjPlusData::Clone(SdrObject* pObj1) const
|
SdrObjPlusData* SdrObjPlusData::Clone(SdrObject* pObj1) const
|
||||||
@@ -278,13 +276,6 @@ SdrObjPlusData* SdrObjPlusData::Clone(SdrObject* pObj1) const
|
|||||||
pNeuPlusData->aObjTitle = aObjTitle;
|
pNeuPlusData->aObjTitle = aObjTitle;
|
||||||
pNeuPlusData->aObjDescription = aObjDescription;
|
pNeuPlusData->aObjDescription = aObjDescription;
|
||||||
|
|
||||||
if (pAutoTimer!=NULL) {
|
|
||||||
pNeuPlusData->pAutoTimer=new AutoTimer;
|
|
||||||
// Handler, etc. nicht mitkopieren!
|
|
||||||
}
|
|
||||||
|
|
||||||
// For HTMLName: Do not clone, leave uninitialized (empty string)
|
|
||||||
|
|
||||||
return pNeuPlusData;
|
return pNeuPlusData;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -640,13 +631,6 @@ void SdrObject::DelReference(SdrVirtObj& rVrtObj)
|
|||||||
RemoveListener(rVrtObj);
|
RemoveListener(rVrtObj);
|
||||||
}
|
}
|
||||||
|
|
||||||
AutoTimer* SdrObject::ForceAutoTimer()
|
|
||||||
{
|
|
||||||
ImpForcePlusData();
|
|
||||||
if (pPlusData->pAutoTimer==NULL) pPlusData->pAutoTimer=new AutoTimer;
|
|
||||||
return pPlusData->pAutoTimer;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool SdrObject::HasRefPoint() const
|
bool SdrObject::HasRefPoint() const
|
||||||
{
|
{
|
||||||
return sal_False;
|
return sal_False;
|
||||||
@@ -803,30 +787,6 @@ String SdrObject::GetDescription() const
|
|||||||
return String();
|
return String();
|
||||||
}
|
}
|
||||||
|
|
||||||
void SdrObject::SetHTMLName(const String& rStr)
|
|
||||||
{
|
|
||||||
if(rStr.Len() && !pPlusData)
|
|
||||||
{
|
|
||||||
ImpForcePlusData();
|
|
||||||
}
|
|
||||||
|
|
||||||
if(pPlusData && pPlusData->aObjName != rStr)
|
|
||||||
{
|
|
||||||
pPlusData->aHTMLName = rStr;
|
|
||||||
SetChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
String SdrObject::GetHTMLName() const
|
|
||||||
{
|
|
||||||
if(pPlusData)
|
|
||||||
{
|
|
||||||
return pPlusData->aHTMLName;
|
|
||||||
}
|
|
||||||
|
|
||||||
return String();
|
|
||||||
}
|
|
||||||
|
|
||||||
sal_uInt32 SdrObject::GetOrdNum() const
|
sal_uInt32 SdrObject::GetOrdNum() const
|
||||||
{
|
{
|
||||||
if (pObjList!=NULL) {
|
if (pObjList!=NULL) {
|
||||||
@@ -837,9 +797,6 @@ sal_uInt32 SdrObject::GetOrdNum() const
|
|||||||
return nOrdNum;
|
return nOrdNum;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
sal_uInt32 SdrObject::GetNavigationPosition (void)
|
sal_uInt32 SdrObject::GetNavigationPosition (void)
|
||||||
{
|
{
|
||||||
if (pObjList!=NULL && pObjList->RecalcNavigationPositions())
|
if (pObjList!=NULL && pObjList->RecalcNavigationPositions())
|
||||||
|
@@ -110,13 +110,6 @@ protected:
|
|||||||
::com::sun::star::uno::RuntimeException,
|
::com::sun::star::uno::RuntimeException,
|
||||||
::com::sun::star::uno::Exception );
|
::com::sun::star::uno::Exception );
|
||||||
|
|
||||||
::com::sun::star::uno::Any createCursorAny( const ::com::sun::star::uno::Sequence<
|
|
||||||
sal_Int32 >& rPropertyHandles,
|
|
||||||
ResultSetInclude eMode )
|
|
||||||
throw( ::com::sun::star::ucb::CommandAbortedException,
|
|
||||||
::com::sun::star::uno::RuntimeException,
|
|
||||||
::com::sun::star::uno::Exception );
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
|
@@ -789,39 +789,6 @@ Any Content::createCursorAny( const Sequence< rtl::OUString >& rPropertyNames,
|
|||||||
return m_xImpl->executeCommand( aCommand );
|
return m_xImpl->executeCommand( aCommand );
|
||||||
}
|
}
|
||||||
|
|
||||||
//=========================================================================
|
|
||||||
Any Content::createCursorAny( const Sequence< sal_Int32 >& rPropertyHandles,
|
|
||||||
ResultSetInclude eMode )
|
|
||||||
throw( CommandAbortedException, RuntimeException, Exception )
|
|
||||||
{
|
|
||||||
sal_Int32 nCount = rPropertyHandles.getLength();
|
|
||||||
Sequence< Property > aProps( nCount );
|
|
||||||
Property* pProps = aProps.getArray();
|
|
||||||
const sal_Int32* pHandles = rPropertyHandles.getConstArray();
|
|
||||||
for ( sal_Int32 n = 0; n < nCount; ++n )
|
|
||||||
{
|
|
||||||
Property& rProp = pProps[ n ];
|
|
||||||
rProp.Name = rtl::OUString(); // n/a
|
|
||||||
rProp.Handle = pHandles[ n ];
|
|
||||||
}
|
|
||||||
|
|
||||||
OpenCommandArgument2 aArg;
|
|
||||||
aArg.Mode = ( eMode == INCLUDE_FOLDERS_ONLY )
|
|
||||||
? OpenMode::FOLDERS
|
|
||||||
: ( eMode == INCLUDE_DOCUMENTS_ONLY )
|
|
||||||
? OpenMode::DOCUMENTS : OpenMode::ALL;
|
|
||||||
aArg.Priority = 0; // unused
|
|
||||||
aArg.Sink = Reference< XInterface >(); // unused
|
|
||||||
aArg.Properties = aProps;
|
|
||||||
|
|
||||||
Command aCommand;
|
|
||||||
aCommand.Name = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("open"));
|
|
||||||
aCommand.Handle = -1; // n/a
|
|
||||||
aCommand.Argument <<= aArg;
|
|
||||||
|
|
||||||
return m_xImpl->executeCommand( aCommand );
|
|
||||||
}
|
|
||||||
|
|
||||||
//=========================================================================
|
//=========================================================================
|
||||||
Reference< XResultSet > Content::createCursor(
|
Reference< XResultSet > Content::createCursor(
|
||||||
const Sequence< rtl::OUString >& rPropertyNames,
|
const Sequence< rtl::OUString >& rPropertyNames,
|
||||||
|
@@ -365,7 +365,6 @@ SVGExport::GetGlyphPlacement() const
|
|||||||
SVGExport::IsUseGradient() const
|
SVGExport::IsUseGradient() const
|
||||||
SVGExport::popClip()
|
SVGExport::popClip()
|
||||||
SVGExport::pushClip(basegfx::B2DPolyPolygon const&)
|
SVGExport::pushClip(basegfx::B2DPolyPolygon const&)
|
||||||
SVGFilter::implImport(com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&)
|
|
||||||
SalColormap::SalColormap(BitmapPalette const&)
|
SalColormap::SalColormap(BitmapPalette const&)
|
||||||
SalColormap::SetPalette(BitmapPalette const&)
|
SalColormap::SetPalette(BitmapPalette const&)
|
||||||
SalDisplay::IsLocal()
|
SalDisplay::IsLocal()
|
||||||
@@ -479,7 +478,6 @@ ScDocument::IsLoadingMedium() const
|
|||||||
ScDocument::ValidNewTabName(std::__debug::vector<String, std::allocator<String> > const&) const
|
ScDocument::ValidNewTabName(std::__debug::vector<String, std::allocator<String> > const&) const
|
||||||
ScExternalRefManager::setCacheTableReferencedPermanently(unsigned short, rtl::OUString const&, unsigned long)
|
ScExternalRefManager::setCacheTableReferencedPermanently(unsigned short, rtl::OUString const&, unsigned long)
|
||||||
ScFilterDetect::impl_createFactory(com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&)
|
ScFilterDetect::impl_createFactory(com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&)
|
||||||
ScFiltersTest::testVba()
|
|
||||||
ScFormulaCell::ScFormulaCell()
|
ScFormulaCell::ScFormulaCell()
|
||||||
ScGridWindow::InvertSimple(short, int, short, int, unsigned char, unsigned char)
|
ScGridWindow::InvertSimple(short, int, short, int, unsigned char, unsigned char)
|
||||||
ScHTMLColOffset::Insert(ScHTMLColOffset const*, unsigned short, unsigned short)
|
ScHTMLColOffset::Insert(ScHTMLColOffset const*, unsigned short, unsigned short)
|
||||||
@@ -618,10 +616,7 @@ SdrObjEditView::Paste(Window*, unsigned long)
|
|||||||
SdrObjEditView::Yank(unsigned long)
|
SdrObjEditView::Yank(unsigned long)
|
||||||
SdrObjFactory::MakeNewObjUserData(unsigned int, unsigned short, SdrObject*)
|
SdrObjFactory::MakeNewObjUserData(unsigned int, unsigned short, SdrObject*)
|
||||||
SdrObject::ClearObjectItem(unsigned short)
|
SdrObject::ClearObjectItem(unsigned short)
|
||||||
SdrObject::ForceAutoTimer()
|
|
||||||
SdrObject::FreeGlobalDrawObjectItemPool()
|
SdrObject::FreeGlobalDrawObjectItemPool()
|
||||||
SdrObject::GetHTMLName() const
|
|
||||||
SdrObject::SetHTMLName(String const&)
|
|
||||||
SdrOle2Obj::SdrOle2Obj(svt::EmbeddedObjectRef const&, String const&, bool)
|
SdrOle2Obj::SdrOle2Obj(svt::EmbeddedObjectRef const&, String const&, bool)
|
||||||
SdrOle2Obj::SdrOle2Obj(svt::EmbeddedObjectRef const&, bool)
|
SdrOle2Obj::SdrOle2Obj(svt::EmbeddedObjectRef const&, bool)
|
||||||
SdrPage::AddComment(sdr::Comment const&)
|
SdrPage::AddComment(sdr::Comment const&)
|
||||||
|
Reference in New Issue
Block a user