diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-10 22:24:07 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-10 22:24:07 +1100 |
commit | 0f956166c3df90485ca17f44c45645364c2f2bda (patch) | |
tree | 39047e2e69201c9c3f489149ee3b4cbf454bee25 | |
parent | aadc603afeca5657da9903ccb52e89cbb3ba5611 (diff) |
svtools: missing space between brackets and const in fn sig
Change-Id: I95467b53acf3940260616a747b0806050419953d
-rw-r--r-- | include/svtools/simptabl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svtools/simptabl.hxx b/include/svtools/simptabl.hxx index 7b8816fd0156..fa3fd950135a 100644 --- a/include/svtools/simptabl.hxx +++ b/include/svtools/simptabl.hxx @@ -114,7 +114,7 @@ public: sal_uInt16 GetSortedCol(){ return nSortCol;} SvLBoxItem* GetEntryAtPos( SvTreeListEntry* pEntry, sal_uInt16 nPos ) const; - CommandEvent GetCommandEvent()const { return aCEvt;} + CommandEvent GetCommandEvent() const { return aCEvt; } inline bool IsFocusOnCellEnabled() const { return IsCellFocusEnabled(); } void SetCommandHdl( const Link<SvSimpleTable*,void>& rLink ) { aCommandLink = rLink; } |