summaryrefslogtreecommitdiff
path: root/sd/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-06-25 16:00:41 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-06-27 05:21:09 +0000
commit19bacff27bd2201fb136963e11e865b8a31d849e (patch)
treeee185c64024bcce0b71de51734581e5ddc4f67dc /sd/inc
parentdb39c653e5de92bc371040a3f81cc5c4ea6dedf3 (diff)
loplugin:singlevalfields in sd
Change-Id: Idde7bdbd57080518fc416ce97a062ab979393d8e Reviewed-on: https://gerrit.libreoffice.org/26656 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sd/inc')
-rw-r--r--sd/inc/drawdoc.hxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx
index 476be4de258e..a7bdff182cc3 100644
--- a/sd/inc/drawdoc.hxx
+++ b/sd/inc/drawdoc.hxx
@@ -135,16 +135,12 @@ namespace sd
// SdDrawDocument
class SD_DLLPUBLIC SdDrawDocument : public FmFormModel
{
-private:
- OUString msDocAccTitle;
public:
SAL_DLLPRIVATE void setDocAccTitle( const OUString& rTitle ) { msDocAccTitle = rTitle; }
SAL_DLLPRIVATE const OUString& getDocAccTitle() const { return msDocAccTitle; }
-private:
- bool bReadOnly;
-public:
SAL_DLLPRIVATE bool getDocReadOnly() const { return bReadOnly; }
private:
+ OUString msDocAccTitle;
::sd::Outliner* mpOutliner; ///< local outliner for outline mode
::sd::Outliner* mpInternalOutliner; ///< internal outliner for creation of text objects
Timer* mpWorkStartupTimer;