summaryrefslogtreecommitdiff
path: root/include/vcl/graph.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-22 10:36:24 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-23 07:17:50 +0000
commit29a9e97db65bcf5914aed9bf8cb8e8f38c3c5fc0 (patch)
treed4c30fc0519eb34bf27c47515a28908bf426a999 /include/vcl/graph.hxx
parentc895cb32fa8d1cf7fa82cebbde9d8259e68e66f6 (diff)
loplugin field-can-be-private in include/vcl..xmlscript
Change-Id: Ia03f7cccb256d825daa4dc6f4c0598448e46e6cf Reviewed-on: https://gerrit.libreoffice.org/31069 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/graph.hxx')
-rw-r--r--include/vcl/graph.hxx16
1 files changed, 7 insertions, 9 deletions
diff --git a/include/vcl/graph.hxx b/include/vcl/graph.hxx
index 31df428baca9..f75b843c1d21 100644
--- a/include/vcl/graph.hxx
+++ b/include/vcl/graph.hxx
@@ -52,16 +52,7 @@ class ReaderData;
class VCL_DLLPUBLIC GraphicReader
{
-protected:
-
- OUString maUpperName;
- ReaderData* mpReaderData;
-
- GraphicReader() :
- mpReaderData( nullptr ) {}
-
public:
-
virtual ~GraphicReader();
const OUString& GetUpperFilterName() const { return maUpperName; }
@@ -71,6 +62,13 @@ public:
void DisablePreviewMode();
void SetPreviewSize( const Size& );
Size GetPreviewSize() const;
+
+protected:
+ OUString maUpperName;
+
+ GraphicReader() : mpReaderData( nullptr ) {}
+private:
+ ReaderData* mpReaderData;
};
class VCL_DLLPUBLIC GraphicConversionParameters