summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-05-04 12:21:07 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-05-05 08:41:46 +0200
commit44bc7fc5609a4930e7236b43cf445920a2a3bc77 (patch)
treed4656ca85645d82b1eadd9fe7e08137e078c66c6 /svx
parent57f1934bdaa747f6e671419aa040e140d235f937 (diff)
loplugin:checkunusedparams in svx(part2)
Change-Id: I608d504b64336e1cb2fc32a46908bef0cffed3bd Reviewed-on: https://gerrit.libreoffice.org/37229 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r--svx/inc/GalleryControl.hxx6
-rw-r--r--svx/inc/galbrws2.hxx10
-rw-r--r--svx/inc/galobj.hxx6
-rw-r--r--svx/inc/sdr/properties/emptyproperties.hxx3
-rw-r--r--svx/source/gallery2/GalleryControl.cxx7
-rw-r--r--svx/source/gallery2/galbrws2.cxx16
-rw-r--r--svx/source/gallery2/galctrl.cxx34
-rw-r--r--svx/source/gallery2/galexpl.cxx2
-rw-r--r--svx/source/gallery2/galobj.cxx9
-rw-r--r--svx/source/gallery2/galtheme.cxx16
-rw-r--r--svx/source/sdr/contact/viewobjectcontactofpageobj.cxx8
-rw-r--r--svx/source/sdr/properties/emptyproperties.cxx10
-rw-r--r--svx/source/sdr/properties/pageproperties.cxx4
-rw-r--r--svx/source/sdr/properties/properties.cxx5
-rw-r--r--svx/source/sidebar/PanelFactory.cxx2
-rw-r--r--svx/source/svdraw/charthelper.cxx3
-rw-r--r--svx/source/svdraw/svdcrtv.cxx4
-rw-r--r--svx/source/svdraw/svdoedge.cxx4
18 files changed, 64 insertions, 85 deletions
diff --git a/svx/inc/GalleryControl.hxx b/svx/inc/GalleryControl.hxx
index afd77c7dbc3d..2fa7040f56f3 100644
--- a/svx/inc/GalleryControl.hxx
+++ b/svx/inc/GalleryControl.hxx
@@ -39,11 +39,9 @@ namespace svx { namespace sidebar {
class SVX_DLLPUBLIC GalleryControl : public vcl::Window
{
public:
- GalleryControl (
- SfxBindings* pBindings,
- vcl::Window* pParentWindow);
+ GalleryControl( vcl::Window* pParentWindow );
- bool GalleryKeyInput( const KeyEvent& rKEvt, vcl::Window* pWindow);
+ bool GalleryKeyInput( const KeyEvent& rKEvt );
private:
Gallery* mpGallery;
diff --git a/svx/inc/galbrws2.hxx b/svx/inc/galbrws2.hxx
index ab92f8adafc1..422a9c76cd25 100644
--- a/svx/inc/galbrws2.hxx
+++ b/svx/inc/galbrws2.hxx
@@ -152,11 +152,11 @@ public:
INetURLObject GetURL() const;
OUString GetFilterName() const;
- sal_Int8 AcceptDrop( DropTargetHelper& rTarget, const AcceptDropEvent& rEvt );
- sal_Int8 ExecuteDrop( DropTargetHelper& rTarget, const ExecuteDropEvent& rEvt );
- void StartDrag( vcl::Window* pWindow, const Point* pDragPoint = nullptr );
- void TogglePreview( vcl::Window* pWindow, const Point* pPreviewPoint = nullptr );
- void ShowContextMenu( vcl::Window* pWindow, const Point* pContextPoint );
+ sal_Int8 AcceptDrop( DropTargetHelper& rTarget );
+ sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt );
+ void StartDrag( const Point* pDragPoint = nullptr );
+ void TogglePreview();
+ void ShowContextMenu( const Point* pContextPoint );
bool KeyInput( const KeyEvent& rEvt, vcl::Window* pWindow );
static css::uno::Reference< css::frame::XFrame > GetFrame();
diff --git a/svx/inc/galobj.hxx b/svx/inc/galobj.hxx
index ba93c31d386f..aeeab93e1187 100644
--- a/svx/inc/galobj.hxx
+++ b/svx/inc/galobj.hxx
@@ -143,7 +143,7 @@ public:
SgaObjectBmp();
SgaObjectBmp( const INetURLObject& rURL );
- SgaObjectBmp( const Graphic& rGraphic, const INetURLObject& rURL, const OUString& rFormat );
+ SgaObjectBmp( const Graphic& rGraphic, const INetURLObject& rURL );
virtual SgaObjKind GetObjKind() const override { return SgaObjKind::Bitmap; }
};
@@ -153,7 +153,7 @@ class SgaObjectAnim : public SgaObjectBmp
public:
SgaObjectAnim();
- SgaObjectAnim( const Graphic& rGraphic, const INetURLObject& rURL, const OUString& rFormatName );
+ SgaObjectAnim( const Graphic& rGraphic, const INetURLObject& rURL );
virtual SgaObjKind GetObjKind() const override { return SgaObjKind::Animation; }
};
@@ -163,7 +163,7 @@ class SgaObjectINet : public SgaObjectAnim
public:
SgaObjectINet();
- SgaObjectINet( const Graphic& rGraphic, const INetURLObject& rURL, const OUString& rFormatName );
+ SgaObjectINet( const Graphic& rGraphic, const INetURLObject& rURL );
virtual SgaObjKind GetObjKind() const override { return SgaObjKind::Inet; }
};
diff --git a/svx/inc/sdr/properties/emptyproperties.hxx b/svx/inc/sdr/properties/emptyproperties.hxx
index d8c1f3e18499..dad630be6fe9 100644
--- a/svx/inc/sdr/properties/emptyproperties.hxx
+++ b/svx/inc/sdr/properties/emptyproperties.hxx
@@ -52,9 +52,6 @@ namespace sdr
// basic constructor
explicit EmptyProperties(SdrObject& rObj);
- // constructor for copying, but using new object
- EmptyProperties(const EmptyProperties& rProps, SdrObject& rObj);
-
// destructor
virtual ~EmptyProperties() override;
diff --git a/svx/source/gallery2/GalleryControl.cxx b/svx/source/gallery2/GalleryControl.cxx
index 0857cdb57431..8228852dba7d 100644
--- a/svx/source/gallery2/GalleryControl.cxx
+++ b/svx/source/gallery2/GalleryControl.cxx
@@ -34,7 +34,6 @@ namespace svx { namespace sidebar {
static const sal_Int32 gnInitialVerticalSplitPosition (150);
GalleryControl::GalleryControl (
- SfxBindings* /*pBindings*/,
vcl::Window* pParentWindow)
: Window(pParentWindow, WB_SIZEABLE|WB_MOVEABLE|WB_CLOSEABLE|WB_HIDE),
mpGallery (Gallery::GetGalleryInstance()),
@@ -45,8 +44,8 @@ GalleryControl::GalleryControl (
mpBrowser1(VclPtr<GalleryBrowser1>::Create(
this,
mpGallery,
- [this] (KeyEvent const& rEvent, vcl::Window *const pWindow)
- { return this->GalleryKeyInput(rEvent, pWindow); },
+ [this] (KeyEvent const& rEvent, vcl::Window *const /*pWindow*/)
+ { return this->GalleryKeyInput(rEvent); },
[this] ()
{ return mpBrowser2->SelectTheme(mpBrowser1->GetSelectedTheme()); })),
mpBrowser2(VclPtr<GalleryBrowser2>::Create(this, mpGallery)),
@@ -177,7 +176,7 @@ void GalleryControl::Resize()
maLastSize = aNewSize;
}
-bool GalleryControl::GalleryKeyInput( const KeyEvent& rKEvt, vcl::Window* )
+bool GalleryControl::GalleryKeyInput( const KeyEvent& rKEvt )
{
const sal_uInt16 nCode = rKEvt.GetKeyCode().GetCode();
bool bRet = ( !rKEvt.GetKeyCode().IsMod1() &&
diff --git a/svx/source/gallery2/galbrws2.cxx b/svx/source/gallery2/galbrws2.cxx
index 332e414ad3c0..1b2d3c9d3fd1 100644
--- a/svx/source/gallery2/galbrws2.cxx
+++ b/svx/source/gallery2/galbrws2.cxx
@@ -530,7 +530,7 @@ void GalleryBrowser2::Notify( SfxBroadcaster&, const SfxHint& rHint )
}
}
-sal_Int8 GalleryBrowser2::AcceptDrop( DropTargetHelper& rTarget, const AcceptDropEvent& )
+sal_Int8 GalleryBrowser2::AcceptDrop( DropTargetHelper& rTarget )
{
sal_Int8 nRet = DND_ACTION_NONE;
@@ -555,7 +555,7 @@ sal_Int8 GalleryBrowser2::AcceptDrop( DropTargetHelper& rTarget, const AcceptDro
return nRet;
}
-sal_Int8 GalleryBrowser2::ExecuteDrop( DropTargetHelper&, const ExecuteDropEvent& rEvt )
+sal_Int8 GalleryBrowser2::ExecuteDrop( const ExecuteDropEvent& rEvt )
{
sal_Int8 nRet = DND_ACTION_NONE;
@@ -574,7 +574,7 @@ sal_Int8 GalleryBrowser2::ExecuteDrop( DropTargetHelper&, const ExecuteDropEvent
return nRet;
}
-void GalleryBrowser2::StartDrag( vcl::Window*, const Point* pDragPoint )
+void GalleryBrowser2::StartDrag( const Point* pDragPoint )
{
if( mpCurTheme )
{
@@ -586,13 +586,13 @@ void GalleryBrowser2::StartDrag( vcl::Window*, const Point* pDragPoint )
}
}
-void GalleryBrowser2::TogglePreview( vcl::Window*, const Point* )
+void GalleryBrowser2::TogglePreview()
{
SetMode( ( GALLERYBROWSERMODE_PREVIEW != GetMode() ) ? GALLERYBROWSERMODE_PREVIEW : meLastMode );
GetViewWindow()->GrabFocus();
}
-void GalleryBrowser2::ShowContextMenu( vcl::Window*, const Point* pContextPoint )
+void GalleryBrowser2::ShowContextMenu( const Point* pContextPoint )
{
Point aSelPos;
const sal_uIntPtr nItemId = ImplGetSelectedItemId( pContextPoint, aSelPos );
@@ -616,14 +616,14 @@ void GalleryBrowser2::ShowContextMenu( vcl::Window*, const Point* pContextPoint
}
}
-bool GalleryBrowser2::KeyInput( const KeyEvent& rKEvt, vcl::Window* pWindow )
+bool GalleryBrowser2::KeyInput( const KeyEvent& rKEvt, vcl::Window* /*pWindow*/ )
{
Point aSelPos;
const sal_uIntPtr nItemId = ImplGetSelectedItemId( nullptr, aSelPos );
bool bRet = false;
svx::sidebar::GalleryControl* pParentControl = dynamic_cast<svx::sidebar::GalleryControl*>(GetParent());
if (pParentControl != nullptr)
- bRet = pParentControl->GalleryKeyInput(rKEvt, pWindow);
+ bRet = pParentControl->GalleryKeyInput(rKEvt);
if( !bRet && !maViewBox->HasFocus() && nItemId && mpCurTheme )
{
@@ -651,7 +651,7 @@ bool GalleryBrowser2::KeyInput( const KeyEvent& rKEvt, vcl::Window* pWindow )
{
if( bPreview )
{
- TogglePreview( pWindow );
+ TogglePreview();
bRet = true;
}
}
diff --git a/svx/source/gallery2/galctrl.cxx b/svx/source/gallery2/galctrl.cxx
index ce43b484ad47..ad58f46cdc3b 100644
--- a/svx/source/gallery2/galctrl.cxx
+++ b/svx/source/gallery2/galctrl.cxx
@@ -144,7 +144,7 @@ void GalleryPreview::Paint(vcl::RenderContext& rRenderContext, const tools::Rect
void GalleryPreview::MouseButtonDown(const MouseEvent& rMEvt)
{
if (mpTheme && (rMEvt.GetClicks() == 2))
- static_cast<GalleryBrowser2*>(GetParent())->TogglePreview(this);
+ static_cast<GalleryBrowser2*>(GetParent())->TogglePreview();
}
void GalleryPreview::Command(const CommandEvent& rCEvt)
@@ -154,7 +154,7 @@ void GalleryPreview::Command(const CommandEvent& rCEvt)
if (mpTheme && (rCEvt.GetCommand() == CommandEventId::ContextMenu))
{
GalleryBrowser2* pGalleryBrowser = static_cast<GalleryBrowser2*>(GetParent());
- pGalleryBrowser->ShowContextMenu(this, (rCEvt.IsMouseEvent() ? &rCEvt.GetMousePosPixel() : nullptr));
+ pGalleryBrowser->ShowContextMenu(rCEvt.IsMouseEvent() ? &rCEvt.GetMousePosPixel() : nullptr);
}
}
@@ -167,7 +167,7 @@ void GalleryPreview::KeyInput(const KeyEvent& rKEvt)
switch( rKEvt.GetKeyCode().GetCode() )
{
case KEY_BACKSPACE:
- pBrowser->TogglePreview( this );
+ pBrowser->TogglePreview();
break;
case KEY_HOME:
@@ -202,12 +202,12 @@ void GalleryPreview::KeyInput(const KeyEvent& rKEvt)
}
}
-sal_Int8 GalleryPreview::AcceptDrop( const AcceptDropEvent& rEvt )
+sal_Int8 GalleryPreview::AcceptDrop( const AcceptDropEvent& /*rEvt*/ )
{
sal_Int8 nRet;
if (mpTheme)
- nRet = static_cast<GalleryBrowser2*>(GetParent())->AcceptDrop(*this, rEvt);
+ nRet = static_cast<GalleryBrowser2*>(GetParent())->AcceptDrop(*this);
else
nRet = DND_ACTION_NONE;
@@ -219,7 +219,7 @@ sal_Int8 GalleryPreview::ExecuteDrop( const ExecuteDropEvent& rEvt )
sal_Int8 nRet;
if (mpTheme)
- nRet = static_cast<GalleryBrowser2*>(GetParent())->ExecuteDrop(*this, rEvt);
+ nRet = static_cast<GalleryBrowser2*>(GetParent())->ExecuteDrop(rEvt);
else
nRet = DND_ACTION_NONE;
@@ -229,7 +229,7 @@ sal_Int8 GalleryPreview::ExecuteDrop( const ExecuteDropEvent& rEvt )
void GalleryPreview::StartDrag( sal_Int8, const Point& )
{
if(mpTheme)
- static_cast<GalleryBrowser2*>(GetParent())->StartDrag(this);
+ static_cast<GalleryBrowser2*>(GetParent())->StartDrag();
}
void GalleryPreview::PreviewMedia( const INetURLObject& rURL )
@@ -359,7 +359,7 @@ void GalleryIconView::MouseButtonDown(const MouseEvent& rMEvt)
ValueSet::MouseButtonDown(rMEvt);
if (rMEvt.GetClicks() == 2)
- static_cast<GalleryBrowser2*>(GetParent())->TogglePreview(this, &rMEvt.GetPosPixel());
+ static_cast<GalleryBrowser2*>(GetParent())->TogglePreview();
}
void GalleryIconView::Command(const CommandEvent& rCEvt)
@@ -369,7 +369,7 @@ void GalleryIconView::Command(const CommandEvent& rCEvt)
if (rCEvt.GetCommand() == CommandEventId::ContextMenu)
{
GalleryBrowser2* pGalleryBrowser = static_cast<GalleryBrowser2*>(GetParent());
- pGalleryBrowser->ShowContextMenu(this, (rCEvt.IsMouseEvent() ? &rCEvt.GetMousePosPixel() : nullptr));
+ pGalleryBrowser->ShowContextMenu(rCEvt.IsMouseEvent() ? &rCEvt.GetMousePosPixel() : nullptr);
}
}
@@ -379,14 +379,14 @@ void GalleryIconView::KeyInput(const KeyEvent& rKEvt)
ValueSet::KeyInput(rKEvt);
}
-sal_Int8 GalleryIconView::AcceptDrop(const AcceptDropEvent& rEvt)
+sal_Int8 GalleryIconView::AcceptDrop(const AcceptDropEvent& /*rEvt*/)
{
- return(static_cast<GalleryBrowser2*>(GetParent())->AcceptDrop(*this, rEvt));
+ return(static_cast<GalleryBrowser2*>(GetParent())->AcceptDrop(*this));
}
sal_Int8 GalleryIconView::ExecuteDrop(const ExecuteDropEvent& rEvt)
{
- return(static_cast<GalleryBrowser2*>(GetParent())->ExecuteDrop(*this, rEvt));
+ return(static_cast<GalleryBrowser2*>(GetParent())->ExecuteDrop(rEvt));
}
void GalleryIconView::StartDrag(sal_Int8, const Point&)
@@ -396,7 +396,7 @@ void GalleryIconView::StartDrag(sal_Int8, const Point&)
// call this to initiate dragging for ValueSet
ValueSet::StartDrag(aEvt, aRegion);
- static_cast<GalleryBrowser2*>(GetParent())->StartDrag(this);
+ static_cast<GalleryBrowser2*>(GetParent())->StartDrag();
}
GalleryListView::GalleryListView( GalleryBrowser2* pParent, GalleryTheme* pTheme ) :
@@ -552,7 +552,7 @@ void GalleryListView::Command( const CommandEvent& rCEvt )
if( rCEvt.IsMouseEvent() && ( GetRowAtYPosPixel( rCEvt.GetMousePosPixel().Y() ) != BROWSER_ENDOFSELECTION ) )
pPos = &rCEvt.GetMousePosPixel();
- static_cast<GalleryBrowser2*>( GetParent() )->ShowContextMenu( this, pPos );
+ static_cast<GalleryBrowser2*>( GetParent() )->ShowContextMenu( pPos );
}
}
@@ -567,7 +567,7 @@ void GalleryListView::DoubleClick( const BrowserMouseEvent& rEvt )
BrowseBox::DoubleClick( rEvt );
if( rEvt.GetRow() != BROWSER_ENDOFSELECTION )
- static_cast<GalleryBrowser2*>( GetParent() )->TogglePreview( this, &rEvt.GetPosPixel() );
+ static_cast<GalleryBrowser2*>( GetParent() )->TogglePreview();
}
void GalleryListView::Select()
@@ -591,12 +591,12 @@ sal_Int8 GalleryListView::ExecuteDrop( const BrowserExecuteDropEvent& rEvt )
aEvt.maPosPixel.Y() += GetTitleHeight();
- return( static_cast<GalleryBrowser2*>( GetParent() )->ExecuteDrop( *this, aEvt ) );
+ return( static_cast<GalleryBrowser2*>( GetParent() )->ExecuteDrop( aEvt ) );
}
void GalleryListView::StartDrag( sal_Int8, const Point& rPosPixel )
{
- static_cast<GalleryBrowser2*>( GetParent() )->StartDrag( this, &rPosPixel );
+ static_cast<GalleryBrowser2*>( GetParent() )->StartDrag( &rPosPixel );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svx/source/gallery2/galexpl.cxx b/svx/source/gallery2/galexpl.cxx
index 682d14e748c6..5d05b80d7a61 100644
--- a/svx/source/gallery2/galexpl.cxx
+++ b/svx/source/gallery2/galexpl.cxx
@@ -153,7 +153,7 @@ bool GalleryExplorer::GetGraphicObj( const OUString& rThemeName, sal_uInt32 nPos
bRet = bRet || pTheme->GetGraphic( nPos, *pGraphic, bProgress );
if( pThumb )
- bRet = bRet || pTheme->GetThumb( nPos, *pThumb, bProgress );
+ bRet = bRet || pTheme->GetThumb( nPos, *pThumb );
pGal->ReleaseTheme( pTheme, aListener );
}
diff --git a/svx/source/gallery2/galobj.cxx b/svx/source/gallery2/galobj.cxx
index 5f829bd19dbf..a28047a740db 100644
--- a/svx/source/gallery2/galobj.cxx
+++ b/svx/source/gallery2/galobj.cxx
@@ -282,7 +282,7 @@ SgaObjectBmp::SgaObjectBmp( const INetURLObject& rURL )
Init( aGraphic, rURL );
}
-SgaObjectBmp::SgaObjectBmp( const Graphic& rGraphic, const INetURLObject& rURL, const OUString& )
+SgaObjectBmp::SgaObjectBmp( const Graphic& rGraphic, const INetURLObject& rURL )
{
if( FileExists( rURL ) )
Init( rGraphic, rURL );
@@ -391,8 +391,7 @@ SgaObjectAnim::SgaObjectAnim()
}
SgaObjectAnim::SgaObjectAnim( const Graphic& rGraphic,
- const INetURLObject& rURL,
- const OUString& )
+ const INetURLObject& rURL )
{
aURL = rURL;
bIsValid = CreateThumb( rGraphic );
@@ -402,8 +401,8 @@ SgaObjectINet::SgaObjectINet()
{
}
-SgaObjectINet::SgaObjectINet( const Graphic& rGraphic, const INetURLObject& rURL, const OUString& rFormatName ) :
- SgaObjectAnim ( rGraphic, rURL, rFormatName )
+SgaObjectINet::SgaObjectINet( const Graphic& rGraphic, const INetURLObject& rURL ) :
+ SgaObjectAnim ( rGraphic, rURL )
{
}
diff --git a/svx/source/gallery2/galtheme.cxx b/svx/source/gallery2/galtheme.cxx
index 9ec3adf6333f..96028160a949 100644
--- a/svx/source/gallery2/galtheme.cxx
+++ b/svx/source/gallery2/galtheme.cxx
@@ -554,11 +554,11 @@ void GalleryTheme::Actualize( const Link<const INetURLObject&, void>& rActualize
std::unique_ptr<SgaObject> pNewObj;
if ( SgaObjKind::Inet == pEntry->eObjKind )
- pNewObj.reset(static_cast<SgaObject*>(new SgaObjectINet( aGraphic, aURL, aFormat )));
+ pNewObj.reset(static_cast<SgaObject*>(new SgaObjectINet( aGraphic, aURL )));
else if ( aGraphic.IsAnimated() )
- pNewObj.reset(static_cast<SgaObject*>(new SgaObjectAnim( aGraphic, aURL, aFormat )));
+ pNewObj.reset(static_cast<SgaObject*>(new SgaObjectAnim( aGraphic, aURL )));
else
- pNewObj.reset(static_cast<SgaObject*>(new SgaObjectBmp( aGraphic, aURL, aFormat )));
+ pNewObj.reset(static_cast<SgaObject*>(new SgaObjectBmp( aGraphic, aURL )));
if( !InsertObject( *pNewObj ) )
pEntry->mbDelete = true;
@@ -751,7 +751,7 @@ GalleryThemeEntry* GalleryTheme::CreateThemeEntry( const INetURLObject& rURL, bo
return pRet;
}
-bool GalleryTheme::GetThumb( sal_uIntPtr nPos, BitmapEx& rBmp, bool )
+bool GalleryTheme::GetThumb( sal_uIntPtr nPos, BitmapEx& rBmp )
{
SgaObject* pObj = AcquireObject( nPos );
bool bRet = false;
@@ -792,7 +792,7 @@ bool GalleryTheme::GetGraphic( sal_uIntPtr nPos, Graphic& rGraphic, bool bProgre
if( aModel.GetModel() )
{
- if( GetModel( nPos, *aModel.GetModel(), bProgress ) )
+ if( GetModel( nPos, *aModel.GetModel() ) )
{
ImageMap aIMap;
@@ -921,7 +921,7 @@ bool GalleryTheme::InsertGraphic( const Graphic& rGraphic, sal_uIntPtr nInsertPo
return bRet;
}
-bool GalleryTheme::GetModel( sal_uIntPtr nPos, SdrModel& rModel, bool )
+bool GalleryTheme::GetModel( sal_uIntPtr nPos, SdrModel& rModel )
{
const GalleryObject* pObject = ImplGetGalleryObject( nPos );
bool bRet = false;
@@ -1103,9 +1103,9 @@ bool GalleryTheme::InsertURL( const INetURLObject& rURL, sal_uIntPtr nInsertPos
if( nImportRet != GalleryGraphicImportRet::IMPORT_NONE )
{
if ( aGraphic.IsAnimated() )
- pNewObj.reset(static_cast<SgaObject*>(new SgaObjectAnim( aGraphic, rURL, aFormat )));
+ pNewObj.reset(static_cast<SgaObject*>(new SgaObjectAnim( aGraphic, rURL )));
else
- pNewObj.reset(static_cast<SgaObject*>(new SgaObjectBmp( aGraphic, rURL, aFormat )));
+ pNewObj.reset(static_cast<SgaObject*>(new SgaObjectBmp( aGraphic, rURL )));
}
#if HAVE_FEATURE_AVMEDIA
else if( ::avmedia::MediaWindow::isMediaURL( rURL.GetMainURL( INetURLObject::DecodeMechanism::Unambiguous ), ""/*TODO?*/ ) )
diff --git a/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx b/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx
index a6c3e63ba912..3c33a3ee8e93 100644
--- a/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx
+++ b/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx
@@ -57,7 +57,7 @@ public:
virtual void Invoke() final override;
// get primitive visualization
- drawinglayer::primitive2d::Primitive2DContainer createPrimitive2DSequenceForPage(const DisplayInfo& rDisplayInfo);
+ drawinglayer::primitive2d::Primitive2DContainer createPrimitive2DSequenceForPage();
// Own reaction on changes which will be forwarded to the OC of the owner-VOC
virtual void InvalidatePartOfView(const basegfx::B2DRange& rRange) const override;
@@ -117,7 +117,7 @@ void PagePrimitiveExtractor::Invoke()
}
}
-drawinglayer::primitive2d::Primitive2DContainer PagePrimitiveExtractor::createPrimitive2DSequenceForPage(const DisplayInfo& /*rDisplayInfo*/)
+drawinglayer::primitive2d::Primitive2DContainer PagePrimitiveExtractor::createPrimitive2DSequenceForPage()
{
drawinglayer::primitive2d::Primitive2DContainer xRetval;
SdrPage* pStartPage = GetStartPage();
@@ -187,7 +187,7 @@ bool PagePrimitiveExtractor::isDrawModeHighContrast() const { return mrViewObjec
SdrPageView* PagePrimitiveExtractor::TryToGetSdrPageView() const { return mrViewObjectContactOfPageObj.GetObjectContact().TryToGetSdrPageView(); }
OutputDevice* PagePrimitiveExtractor::TryToGetOutputDevice() const { return mrViewObjectContactOfPageObj.GetObjectContact().TryToGetOutputDevice(); }
-drawinglayer::primitive2d::Primitive2DContainer ViewObjectContactOfPageObj::createPrimitive2DSequence(const DisplayInfo& rDisplayInfo) const
+drawinglayer::primitive2d::Primitive2DContainer ViewObjectContactOfPageObj::createPrimitive2DSequence(const DisplayInfo& /*rDisplayInfo*/) const
{
drawinglayer::primitive2d::Primitive2DContainer xRetval;
const SdrPageObj& rPageObject((static_cast< ViewContactOfPageObj& >(GetViewContact())).GetPageObj());
@@ -255,7 +255,7 @@ drawinglayer::primitive2d::Primitive2DContainer ViewObjectContactOfPageObj::crea
mpExtractor->SetViewObjectContactRedirector(GetObjectContact().GetViewObjectContactRedirector());
// create page content
- xPageContent = mpExtractor->createPrimitive2DSequenceForPage(rDisplayInfo);
+ xPageContent = mpExtractor->createPrimitive2DSequenceForPage();
// #i105548# reset VOCRedirector to not accidentally have a pointer to a
// temporary class, so calls to it are avoided safely
diff --git a/svx/source/sdr/properties/emptyproperties.cxx b/svx/source/sdr/properties/emptyproperties.cxx
index d44826f30d07..0eb4b8e0cd8f 100644
--- a/svx/source/sdr/properties/emptyproperties.cxx
+++ b/svx/source/sdr/properties/emptyproperties.cxx
@@ -44,14 +44,6 @@ namespace sdr
{
}
- EmptyProperties::EmptyProperties(const EmptyProperties& rProps, SdrObject& rObj)
- : BaseProperties(rProps, rObj),
- mpEmptyItemSet(nullptr)
- {
- // do not gererate an assert, else derivations like PageProperties will generate an assert
- // using the Clone() operator path.
- }
-
EmptyProperties::~EmptyProperties()
{
if(mpEmptyItemSet)
@@ -63,7 +55,7 @@ namespace sdr
BaseProperties& EmptyProperties::Clone(SdrObject& rObj) const
{
- return *(new EmptyProperties(*this, rObj));
+ return *(new EmptyProperties(rObj));
}
const SfxItemSet& EmptyProperties::GetObjectItemSet() const
diff --git a/svx/source/sdr/properties/pageproperties.cxx b/svx/source/sdr/properties/pageproperties.cxx
index 2250aa2156de..f2ac2d192583 100644
--- a/svx/source/sdr/properties/pageproperties.cxx
+++ b/svx/source/sdr/properties/pageproperties.cxx
@@ -40,8 +40,8 @@ namespace sdr
{
}
- PageProperties::PageProperties(const PageProperties& rProps, SdrObject& rObj)
- : EmptyProperties(rProps, rObj)
+ PageProperties::PageProperties(const PageProperties& /*rProps*/, SdrObject& rObj)
+ : EmptyProperties(rObj)
{
}
diff --git a/svx/source/sdr/properties/properties.cxx b/svx/source/sdr/properties/properties.cxx
index 9c4c8fc3585f..482af2ecdfb9 100644
--- a/svx/source/sdr/properties/properties.cxx
+++ b/svx/source/sdr/properties/properties.cxx
@@ -36,11 +36,6 @@ namespace sdr
{
}
- BaseProperties::BaseProperties(const BaseProperties& /*rProps*/, SdrObject& rObj)
- : mrObject(rObj)
- {
- }
-
BaseProperties::~BaseProperties()
{
}
diff --git a/svx/source/sidebar/PanelFactory.cxx b/svx/source/sidebar/PanelFactory.cxx
index 0ab3df555da4..2a1787e2013b 100644
--- a/svx/source/sidebar/PanelFactory.cxx
+++ b/svx/source/sidebar/PanelFactory.cxx
@@ -161,7 +161,7 @@ Reference<ui::XUIElement> SAL_CALL PanelFactory::createUIElement (
}
else if (rsResourceURL.endsWith("/GalleryPanel"))
{
- pControl.reset(VclPtr<GalleryControl>::Create(pBindings, pParentWindow));
+ pControl.reset(VclPtr<GalleryControl>::Create(pParentWindow));
aLayoutSize = ui::LayoutSize(300,-1,400);
}
else if (rsResourceURL.endsWith("/StyleListPanel"))
diff --git a/svx/source/svdraw/charthelper.cxx b/svx/source/svdraw/charthelper.cxx
index 0fc62bb4b7e4..255c0c03832b 100644
--- a/svx/source/svdraw/charthelper.cxx
+++ b/svx/source/svdraw/charthelper.cxx
@@ -150,8 +150,7 @@ drawinglayer::primitive2d::Primitive2DContainer ChartHelper::tryToGetChartConten
}
void ChartHelper::AdaptDefaultsForChart(
- const uno::Reference < embed::XEmbeddedObject > & xEmbObj,
- bool /* bNoFillStyle */)
+ const uno::Reference < embed::XEmbeddedObject > & xEmbObj)
{
if( xEmbObj.is())
{
diff --git a/svx/source/svdraw/svdcrtv.cxx b/svx/source/svdraw/svdcrtv.cxx
index 28c6a9cad4ea..88577c27d3a9 100644
--- a/svx/source/svdraw/svdcrtv.cxx
+++ b/svx/source/svdraw/svdcrtv.cxx
@@ -279,7 +279,7 @@ bool SdrCreateView::CheckEdgeMode()
}
}
-void SdrCreateView::SetConnectMarker(const SdrObjConnection& rCon, const SdrPageView& /*rPV*/)
+void SdrCreateView::SetConnectMarker(const SdrObjConnection& rCon)
{
SdrObject* pTargetObject = rCon.pObj;
@@ -320,7 +320,7 @@ bool SdrCreateView::MouseMove(const MouseEvent& rMEvt, vcl::Window* pWin)
bool bMarkHit=PickHandle(aPos)!=nullptr || IsMarkedObjHit(aPos);
SdrObjConnection aCon;
if (!bMarkHit) SdrEdgeObj::ImpFindConnector(aPos,*pPV,aCon,nullptr,pWin);
- SetConnectMarker(aCon,*pPV);
+ SetConnectMarker(aCon);
}
}
return SdrDragView::MouseMove(rMEvt,pWin);
diff --git a/svx/source/svdraw/svdoedge.cxx b/svx/source/svdraw/svdoedge.cxx
index e7d04d1fe005..b6b4d7a7164d 100644
--- a/svx/source/svdraw/svdoedge.cxx
+++ b/svx/source/svdraw/svdoedge.cxx
@@ -1880,7 +1880,7 @@ bool SdrEdgeObj::applySpecialDrag(SdrDragStat& rDragStat)
{
// show IA helper, but only do this during IA, so not when the original
// Edge gets modified in the last call
- rDragStat.GetView()->SetConnectMarker(*pDraggedOne, *rDragStat.GetPageView());
+ rDragStat.GetView()->SetConnectMarker(*pDraggedOne);
}
}
@@ -2037,7 +2037,7 @@ bool SdrEdgeObj::MovCreate(SdrDragStat& rDragStat)
(*pEdgeTrack)[nMax-1]=rDragStat.GetNow();
if (rDragStat.GetPageView()!=nullptr) {
ImpFindConnector(rDragStat.GetNow(),*rDragStat.GetPageView(),aCon2,this);
- rDragStat.GetView()->SetConnectMarker(aCon2,*rDragStat.GetPageView());
+ rDragStat.GetView()->SetConnectMarker(aCon2);
}
SetBoundRectDirty();
bSnapRectDirty=true;