diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-10-08 02:02:34 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-10-08 02:02:34 +0200 |
commit | b88206907e4a716dc979998165cc09221734cdff (patch) | |
tree | b476b3250db24bd2de889c14dbf193ee0a7242ce | |
parent | 4b90a078de96bf690bcb34e309138b7cbd5cfc07 (diff) | |
download | MultiMC-b88206907e4a716dc979998165cc09221734cdff.tar MultiMC-b88206907e4a716dc979998165cc09221734cdff.tar.gz MultiMC-b88206907e4a716dc979998165cc09221734cdff.tar.lz MultiMC-b88206907e4a716dc979998165cc09221734cdff.tar.xz MultiMC-b88206907e4a716dc979998165cc09221734cdff.zip |
NOISSUE code comments
-rw-r--r-- | application/MainWindow.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/application/MainWindow.cpp b/application/MainWindow.cpp index 0d8d7dbb..908a126c 100644 --- a/application/MainWindow.cpp +++ b/application/MainWindow.cpp @@ -90,7 +90,7 @@ #include <InstanceImportTask.h> #include "UpdateController.h" -// WHY: to hold the pre-translation strings together with the QAction pointer, so it can be retranslated without a lot of ugly code +// WHY: to hold the pre-translation strings together with the T pointer, so it can be retranslated without a lot of ugly code template <typename T> class Translated { @@ -135,7 +135,6 @@ private: using TranslatedAction = Translated<QAction>; using TranslatedToolButton = Translated<QToolButton>; -// WHY: to hold the pre-translation strings together with the QToolbar pointer, so it can be retranslated without a lot of ugly code class TranslatedToolbar { public: |