summaryrefslogtreecommitdiff
path: root/include/svtools/viewdataentry.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-03 13:54:07 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-06-04 14:49:08 +0200
commit6f2edd4514dc59f5cbac8c653c6e4b1a96ec28a2 (patch)
tree3dda70a8a50943514c82c7c7493416fc84fc9cd7 /include/svtools/viewdataentry.hxx
parent866a4436d3cfac1ff42d7996250bf96fb703aeaa (diff)
new loplugin: inlinesimpleaccessmethods
Create a rewriting plugin for finding methods that simply return object fields, and should therefore be declared in the header, so that the compiler can reduce method calls into a simple fixed-offset load instruction. Change-Id: I7a620fc54250b79681918dc31ed9a8f21118c037 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/svtools/viewdataentry.hxx')
-rw-r--r--include/svtools/viewdataentry.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svtools/viewdataentry.hxx b/include/svtools/viewdataentry.hxx
index 31681af4dc19..b24910b7ce72 100644
--- a/include/svtools/viewdataentry.hxx
+++ b/include/svtools/viewdataentry.hxx
@@ -58,12 +58,12 @@ public:
SvViewDataEntry( const SvViewDataEntry& );
~SvViewDataEntry();
- bool IsSelected() const;
- bool IsHighlighted() const;
- bool IsExpanded() const;
- bool HasFocus() const;
- bool IsCursored() const;
- bool IsSelectable() const;
+ bool IsSelected() const { return mbSelected;}
+ bool IsHighlighted() const { return mbHighlighted;}
+ bool IsExpanded() const { return mbExpanded;}
+ bool HasFocus() const { return mbFocused;}
+ bool IsCursored() const { return mbCursored;}
+ bool IsSelectable() const { return mbSelectable;}
void SetFocus( bool bFocus );
void SetSelected( bool bSelected );
void SetHighlighted( bool bHighlighted );