diff options
author | Rüdiger Timm <rt@openoffice.org> | 2000-11-14 10:55:54 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2000-11-14 10:55:54 +0000 |
commit | 9333a0b01fceca517b2e32ff1245e5baa529b7f9 (patch) | |
tree | 82e0bdba7aab9dacc33cd40e87fdebfc981b61bd /connectivity | |
parent | fc96058320cb96cec8b15b849ba9e640b5f58486 (diff) |
#65293# use Min() from solar.h
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/dbase/DTable.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/drivers/dbase/DTable.cxx b/connectivity/source/drivers/dbase/DTable.cxx index 7b2664316a61..07d52d8da966 100644 --- a/connectivity/source/drivers/dbase/DTable.cxx +++ b/connectivity/source/drivers/dbase/DTable.cxx @@ -2,9 +2,9 @@ * * $RCSfile: DTable.cxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: oj $ $Date: 2000-11-06 11:50:02 $ + * last change: $Author: rt $ $Date: 2000-11-14 11:55:54 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1110,8 +1110,8 @@ BOOL ODbaseTable::CreateFile(const INetURLObject& aFile, BOOL& bCreateMemo) // 0, String() ); // break; } - m_aFileStream << (BYTE) min(nPrecision, 255UL); //Feldlnge - nRecLength += (USHORT)min(nPrecision, 255UL); + m_aFileStream << (BYTE) Min((ULONG)nPrecision, 255UL); //Feldlnge + nRecLength += (USHORT)Min((ULONG)nPrecision, 255UL); m_aFileStream << (BYTE)0; //Nachkommastellen break; case 'F': |