Kaydet (Commit) ff3d5a2c authored tarafından Damjan Jovanovic's avatar Damjan Jovanovic

Stream file handles have to be 64 bits to support Win64.

Patch by: me
üst ce0079de
...@@ -733,7 +733,7 @@ private: ...@@ -733,7 +733,7 @@ private:
String aFilename; String aFilename;
sal_uInt16 nLockCounter; sal_uInt16 nLockCounter;
sal_Bool bIsOpen; sal_Bool bIsOpen;
sal_uInt32 GetFileHandle() const; sal_uIntPtr GetFileHandle() const;
// Forbidden and not implemented. // Forbidden and not implemented.
SvFileStream (const SvFileStream&); SvFileStream (const SvFileStream&);
......
...@@ -322,7 +322,7 @@ SvFileStream::~SvFileStream() ...@@ -322,7 +322,7 @@ SvFileStream::~SvFileStream()
|* |*
*************************************************************************/ *************************************************************************/
sal_uInt32 SvFileStream::GetFileHandle() const sal_uIntPtr SvFileStream::GetFileHandle() const
{ {
return (sal_uInt32)pInstanceData->nHandle; return (sal_uInt32)pInstanceData->nHandle;
} }
......
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