diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-17 18:05:13 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-17 18:05:13 -0600 |
commit | 93bea86bfa77078a46721988cc6c768b8e81a008 (patch) | |
tree | 2d3bab2fab6a80737ff577e7968f5e48b1e62002 /ui/qt5 | |
parent | d697b219406992900dbb731867a48391203b2c54 (diff) | |
download | horizon-93bea86bfa77078a46721988cc6c768b8e81a008.tar.gz horizon-93bea86bfa77078a46721988cc6c768b8e81a008.tar.bz2 horizon-93bea86bfa77078a46721988cc6c768b8e81a008.tar.xz horizon-93bea86bfa77078a46721988cc6c768b8e81a008.zip |
Qt UI: Use monotonic clock for STAMP
Diffstat (limited to 'ui/qt5')
-rw-r--r-- | ui/qt5/horizonwizard.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/qt5/horizonwizard.cc b/ui/qt5/horizonwizard.cc index edfc9c2..1b6bd89 100644 --- a/ui/qt5/horizonwizard.cc +++ b/ui/qt5/horizonwizard.cc @@ -22,6 +22,7 @@ #ifdef HAS_INSTALL_ENV # include <libudev.h> # include <net/if.h> /* ifreq */ +# include <skalibs/tai.h> /* STAMP */ # include <sys/ioctl.h> /* ioctl */ # include <unistd.h> /* close */ #endif /* HAS_INSTALL_ENV */ @@ -254,5 +255,6 @@ HorizonWizard::HorizonWizard(QWidget *parent) : QWizard(parent) { #ifdef HAS_INSTALL_ENV interfaces = probe_ifaces(); + tain_now_set_stopwatch_g(); #endif /* HAS_INSTALL_ENV */ } |