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.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/basic/basmgr.hxx b/include/basic/basmgr.hxx
index 9a55f5d92e7c..01d90e7ecf52 100644
--- a/include/basic/basmgr.hxx
+++ b/include/basic/basmgr.hxx
@@ -46,19 +46,19 @@ class SotStorage;
class BASIC_DLLPUBLIC BasicError
{
private:
- sal_uIntPtr nErrorId;
+ sal_uInt64 nErrorId;
sal_uInt16 nReason;
OUString aErrStr;
public:
BasicError( const BasicError& rErr );
- BasicError( sal_uIntPtr nId, sal_uInt16 nR, const OUString& rErrStr );
+ BasicError( sal_uInt64 nId, sal_uInt16 nR, const OUString& rErrStr );
- sal_uIntPtr GetErrorId() const { return nErrorId; }
+ sal_uInt64 GetErrorId() const { return nErrorId; }
sal_uInt16 GetReason() const { return nReason; }
OUString GetErrorStr() { return aErrStr; }
- void SetErrorId( sal_uIntPtr n ) { nErrorId = n; }
+ void SetErrorId( sal_uInt64 n ) { nErrorId = n; }
void SetReason( sal_uInt16 n ) { nReason = n; }
void SetErrorStr( const OUString& rStr) { aErrStr = rStr; }
};