diff -r c18ca679259d -r ee41fab001f2 src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py --- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py Wed Jan 03 17:36:30 2024 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py Wed Jan 03 18:09:15 2024 +0100 @@ -20,14 +20,17 @@ Class implementing the queues extension interface. """ + # TODO: change this to an enum APPLIED_LIST = 0 UNAPPLIED_LIST = 1 SERIES_LIST = 2 + # TODO: change this to an enum POP = 0 PUSH = 1 GOTO = 2 + # TODO: change this to an enum QUEUE_DELETE = 0 QUEUE_PURGE = 1 QUEUE_ACTIVATE = 2