diff options
author | Noel <noelgrandin@gmail.com> | 2020-10-21 15:32:32 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-10-22 08:08:55 +0200 |
commit | d3158450293875051e04b0e13106ad4c112c8ba6 (patch) | |
tree | e47e91d847b62254c24372804b7cca4135e5e57e /smoketest | |
parent | 7dc6fc32eb618da6defb8a9f330978fa019677b8 (diff) |
long->tools::Long in slideshow..starmath
Change-Id: I18f5b7c5da513d386f8ac848835b0410ebc7d95b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104629
Reviewed-by: Dante DM <dante19031999@gmail.com>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'smoketest')
-rw-r--r-- | smoketest/libtest.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/smoketest/libtest.cxx b/smoketest/libtest.cxx index 0d9c34d429e1..7d90a8522353 100644 --- a/smoketest/libtest.cxx +++ b/smoketest/libtest.cxx @@ -16,6 +16,7 @@ #include <LibreOfficeKit/LibreOfficeKitInit.h> #include <LibreOfficeKit/LibreOfficeKit.hxx> +#include <tools/long.hxx> #ifdef _WIN32 @@ -38,7 +39,7 @@ #else #include <sys/time.h> - static long getTimeMS() + static tools::Long getTimeMS() { struct timeval t; gettimeofday(&t, nullptr); @@ -69,7 +70,7 @@ static int help() int main (int argc, char **argv) { - long start, end; + tools::Long start, end; start = getTimeMS(); |