diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-08 00:13:18 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-08 13:04:49 +0100 |
commit | cb64bcb4ae4918b4f132c44fa30449bf671f23b1 (patch) | |
tree | 953fc87d3dccddb05553093f36a0d6b014d23482 /tools | |
parent | 8a3cdcdc5d705b55173b611305e2e088cab75a7d (diff) |
callcatcher: ditch some more methods
Diffstat (limited to 'tools')
-rw-r--r-- | tools/inc/tools/fsys.hxx | 6 | ||||
-rw-r--r-- | tools/source/fsys/filecopy.cxx | 35 |
2 files changed, 0 insertions, 41 deletions
diff --git a/tools/inc/tools/fsys.hxx b/tools/inc/tools/fsys.hxx index 21cb239c7d87..632b4c175c55 100644 --- a/tools/inc/tools/fsys.hxx +++ b/tools/inc/tools/fsys.hxx @@ -396,14 +396,8 @@ public: FSysError ExecuteExact( FSysAction nActions = FSYS_ACTION_STANDARD, FSysExact eExact = FSYS_NOTEXACT); - const DirEntry* GetErrorSource() const; - const DirEntry* GetErrorTarget() const; - ErrCode GetError() const; - void SetProgressHdl( const Link& rLink ) { aProgressLink = rLink; } const Link& GetProgressHdl() const { return aProgressLink; } - void SetErrorHdl( const Link& rLink ); - const Link& GetErrorHdl() const; }; // ------- diff --git a/tools/source/fsys/filecopy.cxx b/tools/source/fsys/filecopy.cxx index 8629f2bc194e..969988ed9f3d 100644 --- a/tools/source/fsys/filecopy.cxx +++ b/tools/source/fsys/filecopy.cxx @@ -149,41 +149,6 @@ ErrCode FileCopier::Error( ErrCode eErr, const DirEntry* pSource, const DirEntry return eRet; } -//--------------------------------------------------------------------------- - -const DirEntry* FileCopier::GetErrorSource() const -{ - return pImp->pErrSource; -} - -//--------------------------------------------------------------------------- - -const DirEntry* FileCopier::GetErrorTarget() const -{ - return pImp->pErrTarget; -} - -//--------------------------------------------------------------------------- - -ErrCode FileCopier::GetError() const -{ - return pImp->eErr; -} - -//--------------------------------------------------------------------------- - -void FileCopier::SetErrorHdl( const Link &rLink ) -{ - pImp->aErrorLink = rLink; -} - -//--------------------------------------------------------------------------- - -const Link& FileCopier::GetErrorHdl() const -{ - return pImp->aErrorLink ; -} - /************************************************************************* |* |* FileCopier::Execute() |