diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2017-08-23 20:19:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-24 07:53:30 +0200 |
commit | 02c53f744ed23e2149fc7c83d67cb7d8aa5eb0ed (patch) | |
tree | a9b68688e442c0a3a4f2a15336a4403d347458cc /sfx2 | |
parent | 311be7d70146e4963e4dfd1f39d6c71d45d241ca (diff) |
remove unused error codes in svtools
which seem to be unused since initial import
Change-Id: Id5216bac53fafc1020003de10d8dde381b1121cf
Reviewed-on: https://gerrit.libreoffice.org/41491
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/fileobj.cxx | 8 | ||||
-rw-r--r-- | sfx2/source/appl/impldde.cxx | 8 |
2 files changed, 2 insertions, 14 deletions
diff --git a/sfx2/source/appl/fileobj.cxx b/sfx2/source/appl/fileobj.cxx index 37e3adb3d046..8ad8fba7c44c 100644 --- a/sfx2/source/appl/fileobj.cxx +++ b/sfx2/source/appl/fileobj.cxx @@ -514,14 +514,8 @@ IMPL_LINK( SvFileObject, DialogClosedHdl, sfx2::FileDialogHelper*, _pFileDlg, vo aEndEditLink.Call( sFile ); } -/* [Description] - +/* The method determines whether the data-object can be read from a DDE. - - The following can be returned: - ERRCODE_NONE if it has been completely read - ERRCODE_SO_PENDING if it has not been completely read - ERRCODE_SO_FALSE otherwise */ bool SvFileObject::IsPending() const { diff --git a/sfx2/source/appl/impldde.cxx b/sfx2/source/appl/impldde.cxx index ff7898eaded1..2ed6388bbe97 100644 --- a/sfx2/source/appl/impldde.cxx +++ b/sfx2/source/appl/impldde.cxx @@ -295,14 +295,8 @@ bool SvDDEObject::ImplHasOtherFormat( DdeTransaction& rReq ) } bool SvDDEObject::IsPending() const -/* [Description] - +/* The method determines whether the data-object can be read from a DDE. - - Returned is the following: - ERRCODE_NONE if it has been completely read - ERRCODE_SO_PENDING if it has not been completely read - ERRCODE_SO_FALSE otherwise */ { return bWaitForData; |