Kaydet (Commit) 6ce7808d authored tarafından Bjoern Michaelsen's avatar Bjoern Michaelsen

unique_ptr, constness, naming conventions

Change-Id: I37cbfbcc887ec82e750ba1bc614f4eda77be933b
üst 7deb4c93
...@@ -83,19 +83,18 @@ const SwFrm *pRowCacheLastCellFrm = 0; ...@@ -83,19 +83,18 @@ const SwFrm *pRowCacheLastCellFrm = 0;
class TblWait class TblWait
{ {
SwWait *pWait; ::std::unique_ptr<SwWait> m_pWait;
public: public:
TblWait(size_t nCnt, SwFrm *pFrm, SwDocShell &rDocShell, size_t nCnt2 = 0); TblWait(size_t nCnt, SwFrm *pFrm, SwDocShell &rDocShell, size_t nCnt2 = 0);
~TblWait() { delete pWait; }
}; };
TblWait::TblWait(size_t const nCnt, SwFrm *pFrm, SwDocShell &rDocShell, size_t const nCnt2): TblWait::TblWait(size_t const nCnt, SwFrm *pFrm, SwDocShell &rDocShell, size_t const nCnt2):
pWait( 0 ) m_pWait( nullptr )
{ {
bool bWait = 20 < nCnt || 20 < nCnt2 || (pFrm && const bool bWait = 20 < nCnt || 20 < nCnt2 || (pFrm &&
20 < pFrm->ImplFindTabFrm()->GetTable()->GetTabLines().size()); 20 < pFrm->ImplFindTabFrm()->GetTable()->GetTabLines().size());
if( bWait ) if( bWait )
pWait = new SwWait( rDocShell, true ); m_pWait = ::std::unique_ptr<SwWait>(new SwWait( rDocShell, true ));
} }
void SwFEShell::ParkCursorInTab() void SwFEShell::ParkCursorInTab()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment