summaryrefslogtreecommitdiff
path: root/include/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-02-25 10:24:55 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-02-27 07:34:52 +0100
commit19240f625f8bd7b772481abc8e678d7b0fadd921 (patch)
treedf98eb1d1d2bf11179aea13de58aa38548458b9d /include/svtools
parent60c7725a20ff0d77e3025ed60608f57d46e50b58 (diff)
loplugin:unusedfields look for classes where we can make all the..
fields private Change-Id: Id3c6b123f06ab5dcf87628de4c347626110d2d27 Reviewed-on: https://gerrit.libreoffice.org/68302 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svtools')
-rw-r--r--include/svtools/editbrowsebox.hxx1
-rw-r--r--include/svtools/printoptions.hxx3
2 files changed, 2 insertions, 2 deletions
diff --git a/include/svtools/editbrowsebox.hxx b/include/svtools/editbrowsebox.hxx
index b3f4483f9450..01f1298f0ff3 100644
--- a/include/svtools/editbrowsebox.hxx
+++ b/include/svtools/editbrowsebox.hxx
@@ -82,7 +82,6 @@ namespace svt
friend class EditBrowseBox;
Link<LinkParamNone*, void> maModifyHdl;
- protected:
VclPtr<Control> pWindow;
bool bSuspended; // <true> if the window is hidden and disabled
diff --git a/include/svtools/printoptions.hxx b/include/svtools/printoptions.hxx
index 2cb5315b02f3..cdc3acf586c8 100644
--- a/include/svtools/printoptions.hxx
+++ b/include/svtools/printoptions.hxx
@@ -32,10 +32,11 @@ class PrinterOptions;
class SVT_DLLPUBLIC SvtBasePrintOptions: public utl::detail::Options
{
-protected:
SvtPrintOptions_Impl* m_pDataContainer;
+protected:
+
void SetDataContainer( SvtPrintOptions_Impl* pDataContainer ) { m_pDataContainer = pDataContainer; }
public: