diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-31 16:08:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-31 16:08:42 +0300 |
commit | 499a0bc5b9c7d57c227eaf16d11b14865bd066d5 (patch) | |
tree | d7c59dc2bbe2c70a50beb6c643b7130696f7e360 /src/gui/models | |
parent | 0bb3d04819283bebb2e499d8d3b4a6acbbc7e790 (diff) | |
download | plus-499a0bc5b9c7d57c227eaf16d11b14865bd066d5.tar.gz plus-499a0bc5b9c7d57c227eaf16d11b14865bd066d5.tar.bz2 plus-499a0bc5b9c7d57c227eaf16d11b14865bd066d5.tar.xz plus-499a0bc5b9c7d57c227eaf16d11b14865bd066d5.zip |
Add missing notfinal/final to classes.
Diffstat (limited to 'src/gui/models')
-rw-r--r-- | src/gui/models/avatarlistmodel.h | 2 | ||||
-rw-r--r-- | src/gui/models/colormodel.h | 2 | ||||
-rw-r--r-- | src/gui/models/extendedlistmodel.h | 2 | ||||
-rw-r--r-- | src/gui/models/extendednamesmodel.h | 2 | ||||
-rw-r--r-- | src/gui/models/namesmodel.h | 2 | ||||
-rw-r--r-- | src/gui/models/typelistmodel.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/models/avatarlistmodel.h b/src/gui/models/avatarlistmodel.h index 2bbd64878..b6630ee47 100644 --- a/src/gui/models/avatarlistmodel.h +++ b/src/gui/models/avatarlistmodel.h @@ -28,7 +28,7 @@ #include <string> -class AvatarListModel : public ListModel +class AvatarListModel notfinal : public ListModel { public: virtual Avatar *getAvatarAt(const int i) A_WARN_UNUSED = 0; diff --git a/src/gui/models/colormodel.h b/src/gui/models/colormodel.h index 068da0dd9..058eed4eb 100644 --- a/src/gui/models/colormodel.h +++ b/src/gui/models/colormodel.h @@ -32,7 +32,7 @@ class Color; class Widget2; -class ColorModel : public ListModel +class ColorModel final : public ListModel { public: ColorModel(); diff --git a/src/gui/models/extendedlistmodel.h b/src/gui/models/extendedlistmodel.h index 5d859e781..4edfebc3b 100644 --- a/src/gui/models/extendedlistmodel.h +++ b/src/gui/models/extendedlistmodel.h @@ -25,7 +25,7 @@ #include "gui/models/listmodel.h" -class ExtendedListModel : public ListModel +class ExtendedListModel notfinal : public ListModel { public: virtual const Image *getImageAt(int i) A_WARN_UNUSED = 0; diff --git a/src/gui/models/extendednamesmodel.h b/src/gui/models/extendednamesmodel.h index 383a93951..7acaf65c6 100644 --- a/src/gui/models/extendednamesmodel.h +++ b/src/gui/models/extendednamesmodel.h @@ -25,7 +25,7 @@ #include "gui/models/extendedlistmodel.h" -class ExtendedNamesModel : public ExtendedListModel +class ExtendedNamesModel notfinal : public ExtendedListModel { public: ExtendedNamesModel(); diff --git a/src/gui/models/namesmodel.h b/src/gui/models/namesmodel.h index 96d16de36..59bb947e9 100644 --- a/src/gui/models/namesmodel.h +++ b/src/gui/models/namesmodel.h @@ -27,7 +27,7 @@ #include "localconsts.h" -class NamesModel : public ListModel +class NamesModel notfinal : public ListModel { public: NamesModel(); diff --git a/src/gui/models/typelistmodel.h b/src/gui/models/typelistmodel.h index b7de67cff..2db290e70 100644 --- a/src/gui/models/typelistmodel.h +++ b/src/gui/models/typelistmodel.h @@ -27,7 +27,7 @@ /** * Server Type List Model */ -class TypeListModel : public ListModel +class TypeListModel final : public ListModel { public: TypeListModel() |