summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-05-26 12:57:12 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-05-26 12:57:12 +0200
commit77829f9221c1d9c9747304c90a0ceb8a16864a26 (patch)
tree1feb83d5c7af4d18864dc7e2931ab68c91acf323
parentcc8bbf9392336371ba65e04aa13bed82d9e45a70 (diff)
Various loplugin warnings
Change-Id: I27101eb92a5ce6665c6dfaf761c06a33c7646dcb
-rw-r--r--sw/source/uibase/sidebar/PageFooterPanel.cxx16
-rw-r--r--sw/source/uibase/sidebar/PageFooterPanel.hxx5
-rw-r--r--sw/source/uibase/sidebar/PageFormatPanel.cxx17
-rw-r--r--sw/source/uibase/sidebar/PageFormatPanel.hxx5
-rw-r--r--sw/source/uibase/sidebar/PageHeaderPanel.cxx10
-rw-r--r--sw/source/uibase/sidebar/PageHeaderPanel.hxx4
-rw-r--r--sw/source/uibase/sidebar/PageMarginPanel.hxx4
-rw-r--r--sw/source/uibase/sidebar/PageStylesPanel.cxx16
-rw-r--r--sw/source/uibase/sidebar/PageStylesPanel.hxx7
9 files changed, 28 insertions, 56 deletions
diff --git a/sw/source/uibase/sidebar/PageFooterPanel.cxx b/sw/source/uibase/sidebar/PageFooterPanel.cxx
index b492230df44d..e68ff884b3bd 100644
--- a/sw/source/uibase/sidebar/PageFooterPanel.cxx
+++ b/sw/source/uibase/sidebar/PageFooterPanel.cxx
@@ -42,12 +42,12 @@ VclPtr<vcl::Window> PageFooterPanel::Create(
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rxFrame,
SfxBindings* pBindings)
{
- if( pParent == NULL )
- throw ::com::sun::star::lang::IllegalArgumentException("no parent window given to PageFooterPanel::Create", NULL, 0);
+ if( pParent == nullptr )
+ throw ::com::sun::star::lang::IllegalArgumentException("no parent window given to PageFooterPanel::Create", nullptr, 0);
if( !rxFrame.is() )
- throw ::com::sun::star::lang::IllegalArgumentException("no XFrame given to PageFooterPanel::Create", NULL, 0);
- if( pBindings == NULL )
- throw ::com::sun::star::lang::IllegalArgumentException("no SfxBindings given to PageFooterPanel::Create", NULL, 0);
+ throw ::com::sun::star::lang::IllegalArgumentException("no XFrame given to PageFooterPanel::Create", nullptr, 0);
+ if( pBindings == nullptr )
+ throw ::com::sun::star::lang::IllegalArgumentException("no SfxBindings given to PageFooterPanel::Create", nullptr, 0);
return VclPtr<PageFooterPanel>::Create(pParent, rxFrame, pBindings);
}
@@ -60,7 +60,6 @@ PageFooterPanel::PageFooterPanel(
PanelLayout(pParent, "PageFooterPanel", "modules/swriter/ui/pagefooterpanel.ui", rxFrame),
mpBindings( pBindings )
{
- Initialize();
}
PageFooterPanel::~PageFooterPanel()
@@ -73,11 +72,6 @@ void PageFooterPanel::dispose()
PanelLayout::dispose();
}
-void PageFooterPanel::Initialize()
-{
-
-}
-
void PageFooterPanel::NotifyItemUpdate(
const sal_uInt16 /*nSid*/,
const SfxItemState /*eState*/,
diff --git a/sw/source/uibase/sidebar/PageFooterPanel.hxx b/sw/source/uibase/sidebar/PageFooterPanel.hxx
index 4286cb69e7a9..83c5300dafbb 100644
--- a/sw/source/uibase/sidebar/PageFooterPanel.hxx
+++ b/sw/source/uibase/sidebar/PageFooterPanel.hxx
@@ -60,7 +60,7 @@ public:
const sal_uInt16 nSId,
const SfxItemState eState,
const SfxPoolItem* pState,
- const bool bIsEnabled);
+ const bool bIsEnabled) override;
SfxBindings* GetBindings() const { return mpBindings; }
PageFooterPanel(
@@ -80,9 +80,6 @@ private:
VclPtr<MetricField> mpFooterRMargin;
VclPtr<MetricField> mpFooterSpacing;
VclPtr<ListBox> mpSameContentLB;
-
- void Initialize();
-
};
} } //end of namespace sw::sidebar
diff --git a/sw/source/uibase/sidebar/PageFormatPanel.cxx b/sw/source/uibase/sidebar/PageFormatPanel.cxx
index 165d5d39b9fa..25ca95955448 100644
--- a/sw/source/uibase/sidebar/PageFormatPanel.cxx
+++ b/sw/source/uibase/sidebar/PageFormatPanel.cxx
@@ -42,12 +42,12 @@ VclPtr<vcl::Window> PageFormatPanel::Create(
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rxFrame,
SfxBindings* pBindings)
{
- if( pParent == NULL )
- throw ::com::sun::star::lang::IllegalArgumentException("no parent window given to PageFormatPanel::Create", NULL, 0);
+ if( pParent == nullptr )
+ throw ::com::sun::star::lang::IllegalArgumentException("no parent window given to PageFormatPanel::Create", nullptr, 0);
if( !rxFrame.is() )
- throw ::com::sun::star::lang::IllegalArgumentException("no XFrame given to PageFormatPanel::Create", NULL, 0);
- if( pBindings == NULL )
- throw ::com::sun::star::lang::IllegalArgumentException("no SfxBindings given to PageFormatPanel::Create", NULL, 0);
+ throw ::com::sun::star::lang::IllegalArgumentException("no XFrame given to PageFormatPanel::Create", nullptr, 0);
+ if( pBindings == nullptr )
+ throw ::com::sun::star::lang::IllegalArgumentException("no SfxBindings given to PageFormatPanel::Create", nullptr, 0);
return VclPtr<PageFormatPanel>::Create(pParent, rxFrame, pBindings);
}
@@ -64,8 +64,6 @@ PageFormatPanel::PageFormatPanel(
get(mpPaperWidth, "paperwidth");
get(mpPaperHeight, "paperheight");
get(mpPaperOrientation, "paperorientation");
-
- Initialize();
}
PageFormatPanel::~PageFormatPanel()
@@ -83,11 +81,6 @@ void PageFormatPanel::dispose()
PanelLayout::dispose();
}
-void PageFormatPanel::Initialize()
-{
-
-}
-
void PageFormatPanel::NotifyItemUpdate(
const sal_uInt16 /*nSid*/,
const SfxItemState /*eState*/,
diff --git a/sw/source/uibase/sidebar/PageFormatPanel.hxx b/sw/source/uibase/sidebar/PageFormatPanel.hxx
index 178f0628cc20..b8be54d2841f 100644
--- a/sw/source/uibase/sidebar/PageFormatPanel.hxx
+++ b/sw/source/uibase/sidebar/PageFormatPanel.hxx
@@ -60,7 +60,7 @@ public:
const sal_uInt16 nSId,
const SfxItemState eState,
const SfxPoolItem* pState,
- const bool bIsEnabled);
+ const bool bIsEnabled) override;
SfxBindings* GetBindings() const { return mpBindings; }
@@ -79,9 +79,6 @@ private:
VclPtr<MetricField> mpPaperWidth;
VclPtr<MetricField> mpPaperHeight;
VclPtr<ListBox> mpPaperOrientation;
-
- void Initialize();
-
};
} } //end of namespace sw::sidebar
diff --git a/sw/source/uibase/sidebar/PageHeaderPanel.cxx b/sw/source/uibase/sidebar/PageHeaderPanel.cxx
index 907961b4e78b..65c07661e1d1 100644
--- a/sw/source/uibase/sidebar/PageHeaderPanel.cxx
+++ b/sw/source/uibase/sidebar/PageHeaderPanel.cxx
@@ -43,12 +43,12 @@ VclPtr<vcl::Window> PageHeaderPanel::Create(
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rxFrame,
SfxBindings* pBindings)
{
- if( pParent == NULL )
- throw ::com::sun::star::lang::IllegalArgumentException("no parent window given to PageHeaderPanel::Create", NULL, 0);
+ if( pParent == nullptr )
+ throw ::com::sun::star::lang::IllegalArgumentException("no parent window given to PageHeaderPanel::Create", nullptr, 0);
if( !rxFrame.is() )
- throw ::com::sun::star::lang::IllegalArgumentException("no XFrame given to PageHeaderPanel::Create", NULL, 0);
- if( pBindings == NULL )
- throw ::com::sun::star::lang::IllegalArgumentException("no SfxBindings given to PageHeaderPanel::Create", NULL, 0);
+ throw ::com::sun::star::lang::IllegalArgumentException("no XFrame given to PageHeaderPanel::Create", nullptr, 0);
+ if( pBindings == nullptr )
+ throw ::com::sun::star::lang::IllegalArgumentException("no SfxBindings given to PageHeaderPanel::Create", nullptr, 0);
return VclPtr<PageHeaderPanel>::Create(pParent, rxFrame, pBindings);
}
diff --git a/sw/source/uibase/sidebar/PageHeaderPanel.hxx b/sw/source/uibase/sidebar/PageHeaderPanel.hxx
index 46222aee5579..ae1b525d850a 100644
--- a/sw/source/uibase/sidebar/PageHeaderPanel.hxx
+++ b/sw/source/uibase/sidebar/PageHeaderPanel.hxx
@@ -60,7 +60,7 @@ public:
const sal_uInt16 nSId,
const SfxItemState eState,
const SfxPoolItem* pState,
- const bool bIsEnabled);
+ const bool bIsEnabled) override;
SfxBindings* GetBindings() const { return mpBindings; }
PageHeaderPanel(
@@ -68,7 +68,7 @@ public:
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rxFrame,
SfxBindings* pBindings);
virtual ~PageHeaderPanel();
- virtual void dispose();
+ virtual void dispose() override;
private:
diff --git a/sw/source/uibase/sidebar/PageMarginPanel.hxx b/sw/source/uibase/sidebar/PageMarginPanel.hxx
index 3ad17c44b43d..39c7751f9546 100644
--- a/sw/source/uibase/sidebar/PageMarginPanel.hxx
+++ b/sw/source/uibase/sidebar/PageMarginPanel.hxx
@@ -60,7 +60,7 @@ public:
const sal_uInt16 nSID,
const SfxItemState eState,
const SfxPoolItem* pState,
- const bool bIsEnabled);
+ const bool bIsEnabled) override;
SfxBindings* GetBindings() const { return mpBindings; }
@@ -69,7 +69,7 @@ public:
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rxFrame,
SfxBindings* pBindings);
virtual ~PageMarginPanel();
- virtual void dispose();
+ virtual void dispose() override;
private:
diff --git a/sw/source/uibase/sidebar/PageStylesPanel.cxx b/sw/source/uibase/sidebar/PageStylesPanel.cxx
index 0e10e917ed23..b0af6fc0aff2 100644
--- a/sw/source/uibase/sidebar/PageStylesPanel.cxx
+++ b/sw/source/uibase/sidebar/PageStylesPanel.cxx
@@ -42,12 +42,12 @@ VclPtr<vcl::Window> PageStylesPanel::Create(
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rxFrame,
SfxBindings* pBindings)
{
- if( pParent == NULL )
- throw ::com::sun::star::lang::IllegalArgumentException("no parent window given to PageStylesPanel::Create", NULL, 0);
+ if( pParent == nullptr )
+ throw ::com::sun::star::lang::IllegalArgumentException("no parent window given to PageStylesPanel::Create", nullptr, 0);
if( !rxFrame.is() )
- throw ::com::sun::star::lang::IllegalArgumentException("no XFrame given to PageStylesPanel::Create", NULL, 0);
- if( pBindings == NULL )
- throw ::com::sun::star::lang::IllegalArgumentException("no SfxBindings given to PageStylesPanel::Create", NULL, 0);
+ throw ::com::sun::star::lang::IllegalArgumentException("no XFrame given to PageStylesPanel::Create", nullptr, 0);
+ if( pBindings == nullptr )
+ throw ::com::sun::star::lang::IllegalArgumentException("no SfxBindings given to PageStylesPanel::Create", nullptr, 0);
return VclPtr<PageStylesPanel>::Create(pParent, rxFrame, pBindings);
}
@@ -60,7 +60,6 @@ PageStylesPanel::PageStylesPanel(
PanelLayout(pParent, "PageStylesPanel", "modules/swriter/ui/pagestylespanel.ui", rxFrame),
mpBindings( pBindings )
{
- Initialize();
}
PageStylesPanel::~PageStylesPanel()
@@ -73,11 +72,6 @@ void PageStylesPanel::dispose()
PanelLayout::dispose();
}
-void PageStylesPanel::Initialize()
-{
-
-}
-
void PageStylesPanel::NotifyItemUpdate(
const sal_uInt16 /*nSid*/,
const SfxItemState /*eState*/,
diff --git a/sw/source/uibase/sidebar/PageStylesPanel.hxx b/sw/source/uibase/sidebar/PageStylesPanel.hxx
index 8216937c66c7..de3eb6df43a4 100644
--- a/sw/source/uibase/sidebar/PageStylesPanel.hxx
+++ b/sw/source/uibase/sidebar/PageStylesPanel.hxx
@@ -60,7 +60,7 @@ public:
const sal_uInt16 nSId,
const SfxItemState eState,
const SfxPoolItem* pState,
- const bool bIsEnabled);
+ const bool bIsEnabled) override;
SfxBindings* GetBindings() const { return mpBindings; }
PageStylesPanel(
@@ -68,7 +68,7 @@ public:
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rxFrame,
SfxBindings* pBindings);
virtual ~PageStylesPanel();
- virtual void dispose();
+ virtual void dispose() override;
private:
@@ -80,9 +80,6 @@ private:
VclPtr<MetricField> mpFooterRMargin;
VclPtr<MetricField> mpFooterSpacing;
VclPtr<ListBox> mpSameContentLB;
-
- void Initialize();
-
};
} } //end of namespace sw::sidebar