diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-11-11 18:10:21 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-11-18 08:31:54 -0500 |
commit | a2bdea073c22781762472caad3cf66c7d13e2b7f (patch) | |
tree | 9684c40a21f528c88b423eaeca1457988e9db761 | |
parent | d21cbd9763bf04071fdeaabd79f469f75e1d0dc0 (diff) |
Unindent.
Change-Id: I3c644b6ff9916f6ec99ff6208ea073dd1612b4b3
-rw-r--r-- | sc/source/core/inc/bcaslot.hxx | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/sc/source/core/inc/bcaslot.hxx b/sc/source/core/inc/bcaslot.hxx index 830ddeaa216d..a79089058e88 100644 --- a/sc/source/core/inc/bcaslot.hxx +++ b/sc/source/core/inc/bcaslot.hxx @@ -249,24 +249,24 @@ private: class TableSlots { - public: - TableSlots(); - ~TableSlots(); - inline ScBroadcastAreaSlot** getSlots() { return ppSlots; } - - /** - Obtain slot pointer, no check on validity! It is assumed that - all calls are made with the results of ComputeSlotOffset(), - ComputeAreaPoints() and ComputeNextSlot() - */ - inline ScBroadcastAreaSlot* getAreaSlot( SCSIZE nOff ) { return *(ppSlots + nOff); } - - private: - ScBroadcastAreaSlot** ppSlots; - - // prevent usage - TableSlots( const TableSlots& ); - TableSlots& operator=( const TableSlots& ); + public: + TableSlots(); + ~TableSlots(); + inline ScBroadcastAreaSlot** getSlots() { return ppSlots; } + + /** + Obtain slot pointer, no check on validity! It is assumed that + all calls are made with the results of ComputeSlotOffset(), + ComputeAreaPoints() and ComputeNextSlot() + */ + inline ScBroadcastAreaSlot* getAreaSlot( SCSIZE nOff ) { return *(ppSlots + nOff); } + + private: + ScBroadcastAreaSlot** ppSlots; + + // prevent usage + TableSlots( const TableSlots& ); + TableSlots& operator=( const TableSlots& ); }; typedef ::std::map< SCTAB, TableSlots* > TableSlotsMap; |