summaryrefslogtreecommitdiffstats
path: root/src/dotrunner.h
diff options
context:
space:
mode:
authorMoritz 'Morty' Strübe <moritz.struebe@redheads.de>2020-03-19 19:01:31 (GMT)
committerMoritz 'Morty' Strübe <moritz.struebe@redheads.de>2020-03-21 10:31:15 (GMT)
commit00e79b8621b00f72ea56f81b1c4df9eae4ed9252 (patch)
treef390508aaaf334634a12926a2fde1d3d04762d5d /src/dotrunner.h
parente8f0640e7e80351de68b40b5114f71fe94dc5fee (diff)
downloadDoxygen-00e79b8621b00f72ea56f81b1c4df9eae4ed9252.zip
Doxygen-00e79b8621b00f72ea56f81b1c4df9eae4ed9252.tar.gz
Doxygen-00e79b8621b00f72ea56f81b1c4df9eae4ed9252.tar.bz2
Replace qlist with std::vector
Diffstat (limited to 'src/dotrunner.h')
-rw-r--r--src/dotrunner.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dotrunner.h b/src/dotrunner.h
index 2fa0b61..052d5f7 100644
--- a/src/dotrunner.h
+++ b/src/dotrunner.h
@@ -17,8 +17,8 @@
#define DOTRUNNER_H
#include "qcstring.h"
-#include "qlist.h"
#include "qthread.h"
+#include <list>
#include <queue>
#include <mutex>
@@ -101,7 +101,7 @@ class DotRunner
DotConstString m_md5Hash;
DotConstString m_dotExe;
bool m_cleanUp;
- QList<DotJob> m_jobs;
+ std::vector<DotJob> m_jobs;
};
/** Queue of dot jobs to run. */