Add final specifier to GUI classes

Follow up d3d3f7dbb3.
This commit is contained in:
Chocobo1
2020-04-19 10:42:11 +08:00
parent 30ce2dfdf3
commit 16a76eee9f
53 changed files with 58 additions and 58 deletions

View File

@@ -108,7 +108,7 @@ private:
};
/// Widget which uses QLineEdit for path editing
class FileSystemPathLineEdit : public FileSystemPathEdit
class FileSystemPathLineEdit final : public FileSystemPathEdit
{
using base = FileSystemPathEdit;
using WidgetType = Private::FileLineEdit;
@@ -124,7 +124,7 @@ private:
};
/// Widget which uses QComboBox for path editing
class FileSystemPathComboEdit : public FileSystemPathEdit
class FileSystemPathComboEdit final : public FileSystemPathEdit
{
using base = FileSystemPathEdit;
using WidgetType = Private::FileComboEdit;