diff options
| author | AL <26797547+Al12rs@users.noreply.github.com> | 2020-02-15 23:02:49 +0100 |
|---|---|---|
| committer | AL <26797547+Al12rs@users.noreply.github.com> | 2020-02-15 23:02:49 +0100 |
| commit | 423db567816bb3b71ae907195d4a92b9c293e5e9 (patch) | |
| tree | 696f4332b1806849fe3fad4925d34b25e45e527e /src/pluginlist.h | |
| parent | 86c5b64ab5d1b57f0bc1f184983adb0936e6de3f (diff) | |
Change Qtime to QElapsedtimer in some palaces to remove the warnings.
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h index 004b1590..fb6d0543 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -31,6 +31,7 @@ namespace MOBase { class IPluginGame; } #include <QListWidget>
#include <QTimer>
#include <QTime>
+#include <QElapsedTimer>
#include <QTemporaryFile>
#pragma warning(push)
@@ -381,7 +382,7 @@ private: QTemporaryFile m_TempFile;
- QTime m_LastCheck;
+ QElapsedTimer m_LastCheck;
const MOBase::IPluginGame *m_GamePlugin;
|
