summaryrefslogtreecommitdiff
path: root/include/basic/basmgr.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/basic/basmgr.hxx')
-rw-r--r--include/basic/basmgr.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/basic/basmgr.hxx b/include/basic/basmgr.hxx
index 97ebcdddc056..4dfc8833669b 100644
--- a/include/basic/basmgr.hxx
+++ b/include/basic/basmgr.hxx
@@ -48,14 +48,14 @@ enum class BasicErrorReason
class BASIC_DLLPUBLIC BasicError
{
private:
- sal_uInt64 nErrorId;
+ ErrCode nErrorId;
BasicErrorReason nReason;
public:
BasicError( const BasicError& rErr );
- BasicError( sal_uInt64 nId, BasicErrorReason nR );
+ BasicError( ErrCode nId, BasicErrorReason nR );
- sal_uInt64 GetErrorId() const { return nErrorId; }
+ ErrCode GetErrorId() const { return nErrorId; }
};
class ErrorManager;