summaryrefslogtreecommitdiff
path: root/sfx2/source/control/request.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/control/request.cxx')
-rw-r--r--sfx2/source/control/request.cxx34
1 files changed, 0 insertions, 34 deletions
diff --git a/sfx2/source/control/request.cxx b/sfx2/source/control/request.cxx
index a98579171530..119880e37356 100644
--- a/sfx2/source/control/request.cxx
+++ b/sfx2/source/control/request.cxx
@@ -42,7 +42,6 @@
#include <rtl/strbuf.hxx>
-
using namespace ::com::sun::star;
struct SfxRequest_Impl: public SfxListener
@@ -94,8 +93,6 @@ struct SfxRequest_Impl: public SfxListener
};
-
-
void SfxRequest_Impl::Notify( SfxBroadcaster&, const SfxHint &rHint )
{
const SfxSimpleHint* pSimpleHint = dynamic_cast<const SfxSimpleHint*>(&rHint);
@@ -104,7 +101,6 @@ void SfxRequest_Impl::Notify( SfxBroadcaster&, const SfxHint &rHint )
}
-
void SfxRequest_Impl::SetPool( SfxItemPool *pNewPool )
{
if ( pNewPool != pPool )
@@ -118,8 +114,6 @@ void SfxRequest_Impl::SetPool( SfxItemPool *pNewPool )
}
-
-
SfxRequest::~SfxRequest()
{
// Leave out Done() marked requests with 'rem'
@@ -134,7 +128,6 @@ SfxRequest::~SfxRequest()
}
-
SfxRequest::SfxRequest
(
const SfxRequest& rOrig
@@ -164,7 +157,6 @@ SfxRequest::SfxRequest
}
-
SfxRequest::SfxRequest
(
SfxViewFrame* pViewFrame,
@@ -210,8 +202,6 @@ SfxRequest::SfxRequest
}
-
-
SfxRequest::SfxRequest
(
sal_uInt16 nSlotId, // executed <Slot-Id>
@@ -256,7 +246,6 @@ SfxRequest::SfxRequest
}
-
SfxRequest::SfxRequest
(
sal_uInt16 nSlotId,
@@ -286,14 +275,12 @@ SfxCallMode SfxRequest::GetCallMode() const
}
-
bool SfxRequest::IsSynchronCall() const
{
return SfxCallMode::SYNCHRON == ( SfxCallMode::SYNCHRON & pImp->nCallMode );
}
-
void SfxRequest::SetSynchronCall( bool bSynchron )
{
if ( bSynchron )
@@ -314,8 +301,6 @@ const SfxItemSet* SfxRequest::GetInternalArgs_Impl() const
}
-
-
void SfxRequest_Impl::Record
(
const uno::Sequence < beans::PropertyValue >& rArgs // current Parameter
@@ -372,7 +357,6 @@ void SfxRequest_Impl::Record
}
-
void SfxRequest::Record_Impl
(
SfxShell& rSh, // the <SfxShell>, which has executed the Request
@@ -397,7 +381,6 @@ void SfxRequest::Record_Impl
}
-
void SfxRequest::SetArgs( const SfxAllItemSet& rArgs )
{
delete pArgs;
@@ -406,7 +389,6 @@ void SfxRequest::SetArgs( const SfxAllItemSet& rArgs )
}
-
void SfxRequest::AppendItem(const SfxPoolItem &rItem)
{
if(!pArgs)
@@ -415,7 +397,6 @@ void SfxRequest::AppendItem(const SfxPoolItem &rItem)
}
-
void SfxRequest::RemoveItem( sal_uInt16 nID )
{
if (pArgs)
@@ -435,14 +416,12 @@ void SfxRequest::SetReturnValue(const SfxPoolItem &rItem)
}
-
const SfxPoolItem* SfxRequest::GetReturnValue() const
{
return pImp->pRetVal;
}
-
void SfxRequest::Done
(
const SfxItemSet& rSet, /* parameters passed on by the application,
@@ -503,8 +482,6 @@ void SfxRequest::Done
}
-
-
void SfxRequest::Done( bool bRelease )
// [<SfxRequest::Done(SfxItemSet&)>]
{
@@ -514,7 +491,6 @@ void SfxRequest::Done( bool bRelease )
}
-
void SfxRequest::ForgetAllArgs()
{
DELETEZ( pArgs );
@@ -522,14 +498,12 @@ void SfxRequest::ForgetAllArgs()
}
-
bool SfxRequest::IsCancelled() const
{
return pImp->bCancelled;
}
-
void SfxRequest::Cancel()
/* [Description]
@@ -545,8 +519,6 @@ void SfxRequest::Cancel()
}
-
-
void SfxRequest::Ignore()
/* [Description]
@@ -567,7 +539,6 @@ void SfxRequest::Ignore()
}
-
void SfxRequest::Done_Impl
(
const SfxItemSet* pSet /* parameters passed on by the application,
@@ -682,7 +653,6 @@ void SfxRequest::Done_Impl
}
-
bool SfxRequest::IsDone() const
/* [Description]
@@ -705,7 +675,6 @@ bool SfxRequest::IsDone() const
}
-
css::uno::Reference< css::frame::XDispatchRecorder > SfxRequest::GetMacroRecorder( SfxViewFrame* pView )
/* [Description]
@@ -742,8 +711,6 @@ bool SfxRequest::HasMacroRecorder( SfxViewFrame* pView )
}
-
-
bool SfxRequest::IsAPI() const
/* [Description]
@@ -769,7 +736,6 @@ sal_uInt16 SfxRequest::GetModifier() const
}
-
void SfxRequest::AllowRecording( bool bSet )
{
pImp->bAllowRecording = bSet;