summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/selectionstate.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-03-03 20:57:02 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-03-03 20:55:50 +0000
commit6cb9e6dad798ec59f055aebe84a9c4a21e4be40d (patch)
tree21a7d6c0b165251ba8e0f36e73c851d41ac9dd04 /sc/source/ui/inc/selectionstate.hxx
parent7e8806cd728bf906e1a8f1d649bef7337f297b1c (diff)
Remove redundant 'inline' keyword
...from function definitions occurring within class definitions. Done with a rewriting Clang plugin (to be pushed later). Change-Id: I9c6f2818a57ccdb361548895a7743107cbacdff8 Reviewed-on: https://gerrit.libreoffice.org/34874 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc/source/ui/inc/selectionstate.hxx')
-rw-r--r--sc/source/ui/inc/selectionstate.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/selectionstate.hxx b/sc/source/ui/inc/selectionstate.hxx
index 8791751697aa..cc69e10fbfce 100644
--- a/sc/source/ui/inc/selectionstate.hxx
+++ b/sc/source/ui/inc/selectionstate.hxx
@@ -40,12 +40,12 @@ public:
explicit ScSelectionState( ScViewData& rViewData );
/** Returns the type of the selection this object contains. */
- inline ScSelectionType GetSelectionType() const { return meType; }
+ ScSelectionType GetSelectionType() const { return meType; }
/** Returns the position of the cell cursor. */
- inline const ScAddress& GetCellCursor() const { return maCursor; }
+ const ScAddress& GetCellCursor() const { return maCursor; }
/** Returns the edit engine selection. */
- inline const ESelection& GetEditSelection() const { return maEditSel; }
+ const ESelection& GetEditSelection() const { return maEditSel; }
private:
ScSelectionType meType; /// Type of the selection.