summaryrefslogtreecommitdiff
path: root/sc/inc/dbdocutl.hxx
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-10-19 15:17:25 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-10-20 08:04:35 +0200
commitb225980d2d65694278c9ed89512fbe21b08febd6 (patch)
treeacd7e008fdabbed097fd97f6c4ba8ddc366946bb /sc/inc/dbdocutl.hxx
parent6eefea359fe1e51adfd4a2002614013a7c060a33 (diff)
use tools::Long in sc
Change-Id: I8f37a8d1174ed816df971b8cee036d4e88d4a7fc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104526 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc/dbdocutl.hxx')
-rw-r--r--sc/inc/dbdocutl.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/inc/dbdocutl.hxx b/sc/inc/dbdocutl.hxx
index 759490eeda03..a5600cc282a8 100644
--- a/sc/inc/dbdocutl.hxx
+++ b/sc/inc/dbdocutl.hxx
@@ -22,6 +22,7 @@
#include "types.hxx"
#include <sal/types.h>
+#include <tools/long.hxx>
class ScDocument;
namespace com::sun::star::uno { template <typename > class Reference; }
@@ -42,8 +43,8 @@ public:
};
static void PutData( ScDocument& rDoc, SCCOL nCol, SCROW nRow, SCTAB nTab,
const css::uno::Reference< css::sdbc::XRow>& xRow,
- long nRowPos,
- long nType, bool bCurrency, StrData* pStrData = nullptr );
+ tools::Long nRowPos,
+ tools::Long nType, bool bCurrency, StrData* pStrData = nullptr );
};
#endif