summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-22 16:04:08 +0200
committerNoel Grandin <noel@peralex.com>2016-02-22 16:04:36 +0200
commitc17ead7dc9c9dce23033fdda9c316f27a0225b17 (patch)
tree3f04f0c1f6d64c97bee08a4658080da93d908ee1 /sw/inc
parent816afdb7c717c324fa4ea98df93b47b093e39d71 (diff)
loplugin:commaoperator in sw/
Change-Id: I9b00755707687e4c10c02bf49866571f2c44d8ba
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/hints.hxx2
-rw-r--r--sw/inc/view.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/hints.hxx b/sw/inc/hints.hxx
index dc8d1799dbc7..6294d6a1c2f9 100644
--- a/sw/inc/hints.hxx
+++ b/sw/inc/hints.hxx
@@ -237,7 +237,7 @@ public:
const SwPageFrame *GetOrigPage() { return m_pOrigPage;}
const SwFrame *GetFrame() { return m_pFrame; }
void SetInfo( const SwPageFrame *pPg,
- const SwFrame *pF ) { m_pFrame = pF, m_pPage = pPg; }
+ const SwFrame *pF ) { m_pFrame = pF; m_pPage = pPg; }
};
class SwFindNearestNode : public SwMsgPoolItem
diff --git a/sw/inc/view.hxx b/sw/inc/view.hxx
index 5fd4efe99fca..b9a88bae146f 100644
--- a/sw/inc/view.hxx
+++ b/sw/inc/view.hxx
@@ -579,7 +579,7 @@ public:
virtual void WriteUserDataSequence ( css::uno::Sequence < css::beans::PropertyValue >&, bool bBrowse ) override;
void SetCursorAtTop( bool bFlag, bool bCenter = false )
- { m_bTopCursor = bFlag, m_bCenterCursor = bCenter; }
+ { m_bTopCursor = bFlag; m_bCenterCursor = bCenter; }
bool IsCursorAtTop() const { return m_bTopCursor; }
bool IsCursorAtCenter() const { return m_bCenterCursor; }