summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-21 14:42:23 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-22 08:44:08 +0200
commit60f3e9b67e688e6f7f304cc7fb14fc28af83f351 (patch)
tree41e29cb2a424e38af454690c4fc9c7c7cd6f31fd
parent450bf26c23bf2bb4346236778ef066c6e215eafe (diff)
loplugin:unusedfields in sd part3
Change-Id: Id8277e4b3dc9776715a7bd85e1a4f6610aad9b19 Reviewed-on: https://gerrit.libreoffice.org/39061 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--sd/inc/CustomAnimationPreset.hxx1
-rw-r--r--sd/inc/Outliner.hxx11
-rw-r--r--sd/inc/drawdoc.hxx1
-rw-r--r--sd/source/core/CustomAnimationPreset.cxx1
-rw-r--r--sd/source/core/drawdoc.cxx5
-rw-r--r--sd/source/filter/eppt/eppt.cxx4
-rw-r--r--sd/source/filter/eppt/eppt.hxx1
-rw-r--r--sd/source/filter/eppt/epptso.cxx5
-rw-r--r--sd/source/ui/dlg/dlgchar.cxx2
-rw-r--r--sd/source/ui/docshell/docshel4.cxx6
-rw-r--r--sd/source/ui/docshell/docshell.cxx9
-rw-r--r--sd/source/ui/docshell/sdclient.cxx3
-rw-r--r--sd/source/ui/framework/factories/BasicToolBarFactory.cxx11
-rw-r--r--sd/source/ui/framework/factories/BasicToolBarFactory.hxx1
-rw-r--r--sd/source/ui/func/fudraw.cxx11
-rw-r--r--sd/source/ui/func/fupoor.cxx17
-rw-r--r--sd/source/ui/inc/Client.hxx2
-rw-r--r--sd/source/ui/inc/DrawDocShell.hxx1
-rw-r--r--sd/source/ui/inc/FrameView.hxx3
-rw-r--r--sd/source/ui/inc/dlg_char.hxx1
-rw-r--r--sd/source/ui/inc/fupoor.hxx1
-rw-r--r--sd/source/ui/slideshow/slideshow.cxx1
-rw-r--r--sd/source/ui/view/Outliner.cxx6
-rw-r--r--sd/source/ui/view/drviews1.cxx5
-rw-r--r--sd/source/ui/view/frmview.cxx1
25 files changed, 8 insertions, 102 deletions
diff --git a/sd/inc/CustomAnimationPreset.hxx b/sd/inc/CustomAnimationPreset.hxx
index e9f46362a58b..530a6e7a990c 100644
--- a/sd/inc/CustomAnimationPreset.hxx
+++ b/sd/inc/CustomAnimationPreset.hxx
@@ -61,7 +61,6 @@ public:
private:
OUString maPresetId;
OUString maProperty;
- sal_Int16 mnPresetClass;
OUString maLabel;
OUString maDefaultSubTyp;
double mfDuration;
diff --git a/sd/inc/Outliner.hxx b/sd/inc/Outliner.hxx
index 874bc3952668..917639125d0f 100644
--- a/sd/inc/Outliner.hxx
+++ b/sd/inc/Outliner.hxx
@@ -320,17 +320,6 @@ private:
*/
::sd::outliner::IteratorPosition maLastValidPosition;
- /** This flag indicates whether a selection change event is expected due
- to a programatical change of the selection.
- */
- bool mbExpectingSelectionChangeEvent;
-
- /** This flag is set to true when the whole document has been
- processed once 'officially', i.e. a message box has been shown
- that tells the user so.
- */
- bool mbWholeDocumentProcessed;
-
/** When this flag is true then a PrepareSpelling() is executed when
StartSearchAndReplace() is called the next time.
*/
diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx
index a22259f58db4..2a72855698fd 100644
--- a/sd/inc/drawdoc.hxx
+++ b/sd/inc/drawdoc.hxx
@@ -173,7 +173,6 @@ private:
bool mbAllocDocSh; // => AllocModel()
DocumentType meDocType;
CharClass* mpCharClass;
- css::lang::Locale* mpLocale;
::std::unique_ptr<ImpDrawPageListWatcher> mpDrawPageListWatcher;
::std::unique_ptr<ImpMasterPageListWatcher> mpMasterPageListWatcher;
diff --git a/sd/source/core/CustomAnimationPreset.cxx b/sd/source/core/CustomAnimationPreset.cxx
index 7291f88c619b..35bb383dfbe6 100644
--- a/sd/source/core/CustomAnimationPreset.cxx
+++ b/sd/source/core/CustomAnimationPreset.cxx
@@ -127,7 +127,6 @@ CustomAnimationPreset::CustomAnimationPreset( const CustomAnimationEffectPtr& pE
{
maPresetId = pEffect->getPresetId();
maProperty = pEffect->getProperty();
- mnPresetClass = pEffect->getPresetClass();
add( pEffect );
diff --git a/sd/source/core/drawdoc.cxx b/sd/source/core/drawdoc.cxx
index fba824d42a94..727b7d0b29af 100644
--- a/sd/source/core/drawdoc.cxx
+++ b/sd/source/core/drawdoc.cxx
@@ -172,7 +172,6 @@ SdDrawDocument::SdDrawDocument(DocumentType eType, SfxObjectShell* pDrDocSh)
, mbAllocDocSh(false)
, meDocType(eType)
, mpCharClass(nullptr)
-, mpLocale(nullptr)
, mbUseEmbedFonts(false)
{
mpDrawPageListWatcher.reset(new ImpDrawPageListWatcher(*this));
@@ -236,7 +235,6 @@ SdDrawDocument::SdDrawDocument(DocumentType eType, SfxObjectShell* pDrDocSh)
LanguageType eRealLanguage = MsLangId::getRealLanguage( meLanguage );
LanguageTag aLanguageTag( eRealLanguage);
- mpLocale = new css::lang::Locale( aLanguageTag.getLocale());
mpCharClass = new CharClass( aLanguageTag );
// If the current application language is a language that uses right-to-left text...
@@ -420,9 +418,6 @@ SdDrawDocument::~SdDrawDocument()
delete mpInternalOutliner;
mpInternalOutliner = nullptr;
- delete mpLocale;
- mpLocale = nullptr;
-
delete mpCharClass;
mpCharClass = nullptr;
}
diff --git a/sd/source/filter/eppt/eppt.cxx b/sd/source/filter/eppt/eppt.cxx
index a05169c5fee9..4e13e21646a2 100644
--- a/sd/source/filter/eppt/eppt.cxx
+++ b/sd/source/filter/eppt/eppt.cxx
@@ -93,7 +93,6 @@ PPTWriter::PPTWriter( tools::SvRef<SotStorage>& rSvStorage,
mpVBA ( pVBA ),
mnExEmbed ( 0 ),
mpExEmbed ( new SvMemoryStream ),
- mnDrawings ( 0 ),
mnPagesWritten ( 0 ),
mnTxId ( 0x7a2f64 ),
mnDiaMode ( 0 ),
@@ -107,9 +106,6 @@ void PPTWriter::exportPPTPre( const std::vector< css::beans::PropertyValue >& rM
if ( !mrStg.is() )
return;
- // master pages + slides and notes + notes master page
- mnDrawings = mnMasterPages + ( mnPages << 1 ) + 1;
-
if ( mXStatusIndicator.is() )
{
mbStatusIndicator = true;
diff --git a/sd/source/filter/eppt/eppt.hxx b/sd/source/filter/eppt/eppt.hxx
index 80a1ab4d9ffd..076548084987 100644
--- a/sd/source/filter/eppt/eppt.hxx
+++ b/sd/source/filter/eppt/eppt.hxx
@@ -172,7 +172,6 @@ class PPTWriter : public PPTWriterBase, public PPTExBulletProvider
sal_uInt32 mnExEmbed;
SvMemoryStream* mpExEmbed;
- sal_uInt32 mnDrawings; // number of Slides + masterpages + notes + handout
sal_uInt32 mnPagesWritten;
sal_uInt32 mnTxId; // Identifier determined by the HOST (PP) ????
sal_uInt32 mnDiaMode; // 0 -> manual
diff --git a/sd/source/filter/eppt/epptso.cxx b/sd/source/filter/eppt/epptso.cxx
index f73a882ff0f3..fb33823500dc 100644
--- a/sd/source/filter/eppt/epptso.cxx
+++ b/sd/source/filter/eppt/epptso.cxx
@@ -2922,10 +2922,9 @@ void PPTWriter::ImplWritePage( const PHLayout& rLayout, EscherSolverContainer& a
struct CellBorder
{
sal_Int32 mnPos; // specifies the distance to the top/left position of the table
- sal_Int32 mnLength;
table::BorderLine maCellBorder;
- CellBorder() : mnPos ( 0 ), mnLength( 0 ){};
+ CellBorder() : mnPos ( 0 ) {};
};
bool PPTWriter::ImplCreateCellBorder( const CellBorder* pCellBorder, sal_Int32 nX1, sal_Int32 nY1, sal_Int32 nX2, sal_Int32 nY2)
@@ -3175,7 +3174,6 @@ void PPTWriter::ImplCreateTable( uno::Reference< drawing::XShape >& rXShape, Esc
{
CellBorder aCellBorder;
aCellBorder.mnPos = aColumns[ nColumn ].first;
- aCellBorder.mnLength = aColumns[ nColumn ].second;
bool bTop = false;
//write nLine*nColumn cell's top border
if ( nLine < xRows->getCount() )
@@ -3233,7 +3231,6 @@ void PPTWriter::ImplCreateTable( uno::Reference< drawing::XShape >& rXShape, Esc
CellBorder aCellBorder;
aCellBorder.mnPos = aRows[ nRow].first;
- aCellBorder.mnLength = aRows[ nRow].second;
bool bLeft = false;
if ( nLine < xColumns->getCount() )
{ // left border
diff --git a/sd/source/ui/dlg/dlgchar.cxx b/sd/source/ui/dlg/dlgchar.cxx
index bcf443767eea..57c7f2d18266 100644
--- a/sd/source/ui/dlg/dlgchar.cxx
+++ b/sd/source/ui/dlg/dlgchar.cxx
@@ -45,7 +45,7 @@ SdCharDlg::SdCharDlg( vcl::Window* pParent, const SfxItemSet* pAttr,
mnCharName = AddTabPage( "RID_SVXPAGE_CHAR_NAME", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_CHAR_NAME ), nullptr );
mnCharEffects = AddTabPage( "RID_SVXPAGE_CHAR_EFFECTS", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_CHAR_EFFECTS ), nullptr );
- mnCharPosition = AddTabPage( "RID_SVXPAGE_CHAR_POSITION", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_CHAR_POSITION ), nullptr );
+ AddTabPage( "RID_SVXPAGE_CHAR_POSITION", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_CHAR_POSITION ), nullptr );
mnCharBackground = AddTabPage( "RID_SVXPAGE_BACKGROUND", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BACKGROUND ), nullptr );
}
diff --git a/sd/source/ui/docshell/docshel4.cxx b/sd/source/ui/docshell/docshel4.cxx
index afaacaf55dec..40575d52a566 100644
--- a/sd/source/ui/docshell/docshel4.cxx
+++ b/sd/source/ui/docshell/docshel4.cxx
@@ -267,8 +267,6 @@ bool DrawDocShell::InitNew( const css::uno::Reference< css::embed::XStorage >& x
*/
bool DrawDocShell::Load( SfxMedium& rMedium )
{
- mbNewDocument = false;
-
// If this is an ODF file being loaded, then by default, use legacy processing
// for tdf#99729 (if required, it will be overridden in *::ReadUserDataSequence())
if (IsOwnStorageFormat(rMedium))
@@ -356,8 +354,6 @@ bool DrawDocShell::Load( SfxMedium& rMedium )
*/
bool DrawDocShell::LoadFrom( SfxMedium& rMedium )
{
- mbNewDocument = false;
-
WaitObject* pWait = nullptr;
if( mpViewShell )
pWait = new WaitObject( static_cast<vcl::Window*>(mpViewShell->GetActiveWindow()) );
@@ -438,8 +434,6 @@ bool DrawDocShell::ImportFrom(SfxMedium &rMedium,
*/
bool DrawDocShell::ConvertFrom( SfxMedium& rMedium )
{
- mbNewDocument = false;
-
const OUString aFilterName( rMedium.GetFilter()->GetFilterName() );
bool bRet = false;
bool bStartPresentation = false;
diff --git a/sd/source/ui/docshell/docshell.cxx b/sd/source/ui/docshell/docshell.cxx
index 77d7cf641c8b..fa35e3a9808b 100644
--- a/sd/source/ui/docshell/docshell.cxx
+++ b/sd/source/ui/docshell/docshell.cxx
@@ -125,8 +125,7 @@ DrawDocShell::DrawDocShell(SfxObjectCreateMode eMode,
mpFontList(nullptr),
meDocType(eDocumentType),
mbSdDataObj(bDataObject),
- mbOwnPrinter(false),
- mbNewDocument( true )
+ mbOwnPrinter(false)
{
Construct( eMode == SfxObjectCreateMode::INTERNAL );
}
@@ -140,8 +139,7 @@ DrawDocShell::DrawDocShell( SfxModelFlags nModelCreationFlags, bool bDataObject,
mpFontList(nullptr),
meDocType(eDocumentType),
mbSdDataObj(bDataObject),
- mbOwnPrinter(false),
- mbNewDocument( true )
+ mbOwnPrinter(false)
{
Construct( false );
}
@@ -157,8 +155,7 @@ DrawDocShell::DrawDocShell(SdDrawDocument* pDoc, SfxObjectCreateMode eMode,
mpFontList(nullptr),
meDocType(eDocumentType),
mbSdDataObj(bDataObject),
- mbOwnPrinter(false),
- mbNewDocument( true )
+ mbOwnPrinter(false)
{
Construct( eMode == SfxObjectCreateMode::INTERNAL );
}
diff --git a/sd/source/ui/docshell/sdclient.cxx b/sd/source/ui/docshell/sdclient.cxx
index 68c7dbacb428..2f0c132fef79 100644
--- a/sd/source/ui/docshell/sdclient.cxx
+++ b/sd/source/ui/docshell/sdclient.cxx
@@ -40,8 +40,7 @@ namespace sd {
Client::Client(SdrOle2Obj* pObj, ViewShell* pViewShell, vcl::Window* pWindow) :
SfxInPlaceClient(pViewShell->GetViewShell(), pWindow, pObj->GetAspect() ),
mpViewShell(pViewShell),
- pSdrOle2Obj(pObj),
- pSdrGrafObj(nullptr)
+ pSdrOle2Obj(pObj)
{
SetObject( pObj->GetObjRef() );
DBG_ASSERT( GetObject().is(), "No object connected!" );
diff --git a/sd/source/ui/framework/factories/BasicToolBarFactory.cxx b/sd/source/ui/framework/factories/BasicToolBarFactory.cxx
index 407310085826..e3f183b0729f 100644
--- a/sd/source/ui/framework/factories/BasicToolBarFactory.cxx
+++ b/sd/source/ui/framework/factories/BasicToolBarFactory.cxx
@@ -40,8 +40,7 @@ BasicToolBarFactory::BasicToolBarFactory (
const Reference<XComponentContext>& rxContext)
: BasicToolBarFactoryInterfaceBase(m_aMutex),
mxConfigurationController(),
- mxController(),
- mpViewShellBase(nullptr)
+ mxController()
{
(void)rxContext;
}
@@ -57,7 +56,6 @@ void SAL_CALL BasicToolBarFactory::disposing()
void BasicToolBarFactory::Shutdown()
{
- mpViewShellBase = nullptr;
Reference<lang::XComponent> xComponent (mxConfigurationController, UNO_QUERY);
if (xComponent.is())
xComponent->removeEventListener(static_cast<lang::XEventListener*>(this));
@@ -79,13 +77,6 @@ void SAL_CALL BasicToolBarFactory::initialize (const Sequence<Any>& aArguments)
// Get the XController from the first argument.
mxController.set(aArguments[0], UNO_QUERY_THROW);
- // Tunnel through the controller to obtain a ViewShellBase.
- Reference<lang::XUnoTunnel> xTunnel (mxController, UNO_QUERY_THROW);
- ::sd::DrawController* pController = reinterpret_cast<sd::DrawController*>(
- xTunnel->getSomething(sd::DrawController::getUnoTunnelId()));
- if (pController != nullptr)
- mpViewShellBase = pController->GetViewShellBase();
-
utl::MediaDescriptor aDescriptor (mxController->getModel()->getArgs());
if ( ! aDescriptor.getUnpackedValueOrDefault(
utl::MediaDescriptor::PROP_PREVIEW(),
diff --git a/sd/source/ui/framework/factories/BasicToolBarFactory.hxx b/sd/source/ui/framework/factories/BasicToolBarFactory.hxx
index fa5cabcb58e4..bdfecae20875 100644
--- a/sd/source/ui/framework/factories/BasicToolBarFactory.hxx
+++ b/sd/source/ui/framework/factories/BasicToolBarFactory.hxx
@@ -82,7 +82,6 @@ public:
private:
css::uno::Reference<css::drawing::framework::XConfigurationController> mxConfigurationController;
css::uno::Reference<css::frame::XController> mxController;
- ViewShellBase* mpViewShellBase;
void Shutdown();
diff --git a/sd/source/ui/func/fudraw.cxx b/sd/source/ui/func/fudraw.cxx
index 4494d8476e3e..068a3e03cb91 100644
--- a/sd/source/ui/func/fudraw.cxx
+++ b/sd/source/ui/func/fudraw.cxx
@@ -344,17 +344,6 @@ bool FuDraw::KeyInput(const KeyEvent& rKEvt)
}
else
{
- /* If IP-Client active, we reset the pointer to the OLE- and
- to the old graphic object of SdClient. With this, we
- avoid the restoration of an no more existing object in
- ::SelectionHasChanged after deletion. All other OLE
- objects are not affected. */
- OSL_ASSERT (mpViewShell->GetViewShell()!=nullptr);
- Client* pIPClient = static_cast<Client*>(
- mpViewShell->GetViewShell()->GetIPClient());
- if (pIPClient && pIPClient->IsObjectInPlaceActive())
- pIPClient->SetSdrGrafObj(nullptr);
-
// wait-mousepointer while deleting object
WaitObject aWait( static_cast<vcl::Window*>(mpViewShell->GetActiveWindow()) );
// delete object
diff --git a/sd/source/ui/func/fupoor.cxx b/sd/source/ui/func/fupoor.cxx
index 5589ca9f0345..b572027769d8 100644
--- a/sd/source/ui/func/fupoor.cxx
+++ b/sd/source/ui/func/fupoor.cxx
@@ -72,7 +72,6 @@ FuPoor::FuPoor (
mpDocSh( pDrDoc->GetDocSh() ),
mpDoc(pDrDoc),
nSlotId( rReq.GetSlot() ),
- nSlotValue(0),
pDialog(nullptr),
bIsInDragMode(false),
bNoScrollUntilInside (true),
@@ -1028,22 +1027,8 @@ bool FuPoor::RequestHelp(const HelpEvent& rHEvt)
return bReturn;
}
-void FuPoor::ReceiveRequest(SfxRequest& rReq)
+void FuPoor::ReceiveRequest(SfxRequest& /*rReq*/)
{
- const SfxItemSet* pSet = rReq.GetArgs();
-
- if (pSet)
- {
- if( pSet->GetItemState( nSlotId ) == SfxItemState::SET )
- {
- const SfxPoolItem& rItem = pSet->Get( nSlotId );
-
- if( dynamic_cast< const SfxAllEnumItem *>( &rItem ) != nullptr )
- {
- nSlotValue = static_cast<const SfxAllEnumItem&>( rItem ).GetValue();
- }
- }
- }
}
SdrObject* FuPoor::CreateDefaultObject(const sal_uInt16, const ::tools::Rectangle& )
diff --git a/sd/source/ui/inc/Client.hxx b/sd/source/ui/inc/Client.hxx
index 65a058966d79..0c9febd660b9 100644
--- a/sd/source/ui/inc/Client.hxx
+++ b/sd/source/ui/inc/Client.hxx
@@ -33,7 +33,6 @@ class Client : public SfxInPlaceClient
{
ViewShell* mpViewShell;
SdrOle2Obj* pSdrOle2Obj;
- SdrGrafObj* pSdrGrafObj;
virtual void ObjectAreaChanged() override;
virtual void RequestNewObjectArea( ::tools::Rectangle& ) override;
@@ -42,7 +41,6 @@ class Client : public SfxInPlaceClient
public:
Client (SdrOle2Obj* pObj, ViewShell* pSdViewShell, vcl::Window* pWindow);
virtual ~Client() override;
- void SetSdrGrafObj(SdrGrafObj* pObj) { pSdrGrafObj = pObj; }
};
} // end of namespace sd
diff --git a/sd/source/ui/inc/DrawDocShell.hxx b/sd/source/ui/inc/DrawDocShell.hxx
index 3dad521b119f..640b76de4d3a 100644
--- a/sd/source/ui/inc/DrawDocShell.hxx
+++ b/sd/source/ui/inc/DrawDocShell.hxx
@@ -225,7 +225,6 @@ protected:
bool mbSdDataObj;
bool mbInDestruction;
bool mbOwnPrinter;
- bool mbNewDocument;
bool mbOwnDocument; // if true, we own mpDoc and will delete it in our d'tor
void Construct(bool bClipboard);
diff --git a/sd/source/ui/inc/FrameView.hxx b/sd/source/ui/inc/FrameView.hxx
index 6186a363f146..6ca75dbb04e9 100644
--- a/sd/source/ui/inc/FrameView.hxx
+++ b/sd/source/ui/inc/FrameView.hxx
@@ -154,8 +154,6 @@ public:
{ mnPresViewShellId = nId; }
sal_uInt16 GetPresentationViewShellId() const { return mnPresViewShellId; }
- void SetSlotId(sal_uInt16 nId) { mnSlotId = nId; }
-
void SetSlidesPerRow(sal_uInt16 nSlides) { mnSlidesPerRow = nSlides; }
sal_uInt16 GetSlidesPerRow() const { return mnSlidesPerRow; }
@@ -194,7 +192,6 @@ private:
bool mbDoubleClickTextEdit; ///< text mode after double click
bool mbClickChangeRotation; ///< single click switches between selection/rotation mode
sal_uInt16 mnPresViewShellId; ///< ViewShell from which the presentation was started
- sal_uInt16 mnSlotId; ///< SlotId, which was initial mentioned
sal_uInt16 mnSlidesPerRow; ///< slides per row on the slide-desk
DrawModeFlags mnDrawMode; ///< draw mode for the normal window
/** Remember whether the navigator shows all shapes (<TRUE/>) or only
diff --git a/sd/source/ui/inc/dlg_char.hxx b/sd/source/ui/inc/dlg_char.hxx
index 62e4c9d7479e..22335ed44ee9 100644
--- a/sd/source/ui/inc/dlg_char.hxx
+++ b/sd/source/ui/inc/dlg_char.hxx
@@ -33,7 +33,6 @@ class SdCharDlg : public SfxTabDialog
private:
sal_uInt16 mnCharName;
sal_uInt16 mnCharEffects;
- sal_uInt16 mnCharPosition;
sal_uInt16 mnCharBackground;
const SfxObjectShell& rDocShell;
diff --git a/sd/source/ui/inc/fupoor.hxx b/sd/source/ui/inc/fupoor.hxx
index d12615240aad..be0e2163bb14 100644
--- a/sd/source/ui/inc/fupoor.hxx
+++ b/sd/source/ui/inc/fupoor.hxx
@@ -148,7 +148,6 @@ protected:
SdDrawDocument* mpDoc;
sal_uInt16 nSlotId;
- sal_uInt16 nSlotValue;
VclPtr<Dialog> pDialog;
diff --git a/sd/source/ui/slideshow/slideshow.cxx b/sd/source/ui/slideshow/slideshow.cxx
index 59e583147f9a..574db3f4b826 100644
--- a/sd/source/ui/slideshow/slideshow.cxx
+++ b/sd/source/ui/slideshow/slideshow.cxx
@@ -701,7 +701,6 @@ void SAL_CALL SlideShow::end()
pFrameView->SetPreviousViewShellType(ViewShell::ST_NONE);
pFrameView->SetPresentationViewShellId(SID_VIEWSHELL0);
- pFrameView->SetSlotId(SID_OBJECT_SELECT);
pFrameView->SetPreviousViewShellType(pViewShell->GetShellType());
framework::FrameworkHelper::Instance(*mpCurrentViewShellBase)->RequestView(
diff --git a/sd/source/ui/view/Outliner.cxx b/sd/source/ui/view/Outliner.cxx
index 002c6baf16ad..0b3c8fcdeda7 100644
--- a/sd/source/ui/view/Outliner.cxx
+++ b/sd/source/ui/view/Outliner.cxx
@@ -173,8 +173,6 @@ SdOutliner::SdOutliner( SdDrawDocument* pDoc, OutlinerMode nMode )
maCurrentPosition(),
maSearchStartPosition(),
maLastValidPosition(),
- mbExpectingSelectionChangeEvent(false),
- mbWholeDocumentProcessed(false),
mbPrepareSpellingPending(true)
{
SetStyleSheetPool(static_cast<SfxStyleSheetPool*>( mpDrawDocument->GetStyleSheetPool() ));
@@ -271,7 +269,6 @@ void SdOutliner::PrepareSpelling()
{
mbStringFound = false;
- mbWholeDocumentProcessed = false;
// Supposed that we are not located at the very beginning/end of
// the document then there may be a match in the document
// prior/after the current position.
@@ -1175,8 +1172,6 @@ void SdOutliner::EndOfSearch()
void SdOutliner::ShowEndOfSearchDialog()
{
- mbWholeDocumentProcessed = true;
-
if (meMode == SEARCH)
{
if (!mbStringFound)
@@ -1420,7 +1415,6 @@ void SdOutliner::EnterEditMode (bool bGrabFocus)
// object that is put into edit mode would have also to be selected.
// Starting the text edit mode is not enough so we do it here by
// hand.
- mbExpectingSelectionChangeEvent = true;
mpView->UnmarkAllObj (pPV);
mpView->MarkObj (mpTextObj, pPV);
diff --git a/sd/source/ui/view/drviews1.cxx b/sd/source/ui/view/drviews1.cxx
index ad32c960603d..056f25ca1277 100644
--- a/sd/source/ui/view/drviews1.cxx
+++ b/sd/source/ui/view/drviews1.cxx
@@ -739,11 +739,6 @@ bool DrawViewShell::ActivateObject(SdrOle2Obj* pObj, long nVerb)
ToolBarManager::UpdateLock aLock (GetViewShellBase().GetToolBarManager());
bActivated = ViewShell::ActivateObject(pObj, nVerb);
-
- OSL_ASSERT(GetViewShell()!=nullptr);
- Client* pClient = static_cast<Client*>(GetViewShell()->GetIPClient());
- if (pClient)
- pClient->SetSdrGrafObj(nullptr);
}
return bActivated;
diff --git a/sd/source/ui/view/frmview.cxx b/sd/source/ui/view/frmview.cxx
index 490e8c1ac536..d4e7ccdea3aa 100644
--- a/sd/source/ui/view/frmview.cxx
+++ b/sd/source/ui/view/frmview.cxx
@@ -54,7 +54,6 @@ FrameView::FrameView(SdDrawDocument* pDrawDoc, FrameView* pFrameView /* = NULK *
: SdrView(pDrawDoc, nullptr),
mnRefCount(0),
mnPresViewShellId(SID_VIEWSHELL0),
- mnSlotId(SID_OBJECT_SELECT),
mbIsNavigatorShowingAllShapes(false)
{
EndListening(*pDrawDoc);