summaryrefslogtreecommitdiffstats
path: root/sc/inc/table.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-09 10:09:42 +0200
committerNoel Grandin <noel@peralex.com>2014-06-09 10:10:13 +0200
commit184a00b96235f6432294ded63ce4a4a318effdb5 (patch)
treee4ae0e00cb168fa43d280cfb51a50515258b5320 /sc/inc/table.hxx
parentkdefilepicker is autoinstalled now (diff)
downloadcore-184a00b96235f6432294ded63ce4a4a318effdb5.tar.gz
core-184a00b96235f6432294ded63ce4a4a318effdb5.zip
loplugin: inlinesimplememberfunctions
Change-Id: I42119f656ca528286fb25d2d36c0af54b7d04a6b
Diffstat (limited to 'sc/inc/table.hxx')
-rw-r--r--sc/inc/table.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index 0c008514cbc5..45f8912fa7f4 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -294,7 +294,7 @@ public:
void SetName( const OUString& rNewName );
void SetAnonymousDBData(ScDBData* pDBData);
- ScDBData* GetAnonymousDBData();
+ ScDBData* GetAnonymousDBData() { return pDBDataNoName;}
void GetCodeName( OUString& rName ) const { rName = aCodeName; }
void SetCodeName( const OUString& rNewName ) { aCodeName = rNewName; }
@@ -1105,7 +1105,7 @@ private:
* @return Current row position, or ROW_NOT_FOUND if the iterator
* doesn't point to a valid data cell position.
*/
- SCROW getRow() const;
+ SCROW getRow() const { return mnCurRow;}
private:
ScFlatBoolRowSegments& mrRowSegs;