summaryrefslogtreecommitdiff
path: root/sc/inc/clipcontext.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-11-10 16:27:50 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-11-18 08:31:53 -0500
commit136eed0f538a7b647323773c47a692d65f5b2ae9 (patch)
tree57a8cd147ca0453f58d1facf657be574be52c663 /sc/inc/clipcontext.hxx
parent8c27c4acee4faa3383629c66b6c46a2e9973be50 (diff)
Make these methods non-inline again.
Change-Id: I34e18fa1607d56351e1c3656b1f37a823b7a5609
Diffstat (limited to 'sc/inc/clipcontext.hxx')
-rw-r--r--sc/inc/clipcontext.hxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/sc/inc/clipcontext.hxx b/sc/inc/clipcontext.hxx
index 4017ddab514c..5f558cd5fe74 100644
--- a/sc/inc/clipcontext.hxx
+++ b/sc/inc/clipcontext.hxx
@@ -83,36 +83,36 @@ public:
void setTabRange(SCTAB nStart, SCTAB nEnd);
- SCTAB getTabStart() const { return mnTabStart;}
- SCTAB getTabEnd() const { return mnTabEnd;}
+ SCTAB getTabStart() const;
+ SCTAB getTabEnd() const;
void setDestRange( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 );
Range getDestRange() const;
- ScDocument* getUndoDoc() { return mpRefUndoDoc;}
- ScDocument* getClipDoc() { return mpClipDoc;}
- InsertDeleteFlags getInsertFlag() const { return mnInsertFlag;}
+ ScDocument* getUndoDoc();
+ ScDocument* getClipDoc();
+ InsertDeleteFlags getInsertFlag() const;
void setDeleteFlag( InsertDeleteFlags nFlag );
- InsertDeleteFlags getDeleteFlag() const { return mnDeleteFlag;}
+ InsertDeleteFlags getDeleteFlag() const;
- ScCellValue& getSingleCell() { return maSingleCell;}
+ ScCellValue& getSingleCell();
void setCondFormatList( ScConditionalFormatList* pCondFormatList );
- ScConditionalFormatList* getCondFormatList() { return mpCondFormatList;}
+ ScConditionalFormatList* getCondFormatList();
- const ScPatternAttr* getSingleCellPattern() const { return mpSinglePattern;}
+ const ScPatternAttr* getSingleCellPattern() const;
void setSingleCellPattern( const ScPatternAttr* pAttr );
- const ScPostIt* getSingleCellNote() const { return mpSingleNote;}
+ const ScPostIt* getSingleCellNote() const;
void setSingleCellNote( const ScPostIt* pNote );
void setTableProtected( bool b );
- bool isTableProtected() const { return mbTableProtected;}
+ bool isTableProtected() const;
- bool isAsLink() const { return mbAsLink;}
- bool isSkipAttrForEmptyCells() const { return mbSkipAttrForEmptyCells;}
- bool isCloneNotes() const { return mbCloneNotes;}
+ bool isAsLink() const;
+ bool isSkipAttrForEmptyCells() const;
+ bool isCloneNotes() const;
bool isDateCell( const ScColumn& rCol, SCROW nRow ) const;
};
@@ -127,8 +127,8 @@ public:
CopyToClipContext(ScDocument& rDoc, bool bKeepScenarioFlags, bool bCloneNotes);
virtual ~CopyToClipContext();
- bool isKeepScenarioFlags() const { return mbKeepScenarioFlags;}
- bool isCloneNotes() const { return mbCloneNotes;}
+ bool isKeepScenarioFlags() const;
+ bool isCloneNotes() const;
};
class CopyToDocContext : public ClipContextBase