diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-02-01 22:19:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-02-01 22:19:21 +0300 |
commit | 869c7fe8852248f03849c930c894d8fa218631b5 (patch) | |
tree | f86356b6565f68ebd8ba8f6b69ea3a6b5e87b251 /src/gui/widgets/itemcontainer.cpp | |
parent | f659dfb18c130896f5c51fffca7fbe79f6eba502 (diff) | |
download | plus-869c7fe8852248f03849c930c894d8fa218631b5.tar.gz plus-869c7fe8852248f03849c930c894d8fa218631b5.tar.bz2 plus-869c7fe8852248f03849c930c894d8fa218631b5.tar.xz plus-869c7fe8852248f03849c930c894d8fa218631b5.zip |
Fix code style.
Diffstat (limited to 'src/gui/widgets/itemcontainer.cpp')
-rw-r--r-- | src/gui/widgets/itemcontainer.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/widgets/itemcontainer.cpp b/src/gui/widgets/itemcontainer.cpp index e11e27fd6..0764aee08 100644 --- a/src/gui/widgets/itemcontainer.cpp +++ b/src/gui/widgets/itemcontainer.cpp @@ -62,7 +62,7 @@ class ItemIdPair final Item* mItem; }; -class SortItemAlphaFunctor final +static const class SortItemAlphaFunctor final { public: bool operator() (const ItemIdPair *const pair1, @@ -76,7 +76,7 @@ class SortItemAlphaFunctor final } } itemAlphaSorter; -class SortItemIdFunctor final +static const class SortItemIdFunctor final { public: bool operator() (const ItemIdPair *const pair1, @@ -89,7 +89,7 @@ class SortItemIdFunctor final } } itemIdSorter; -class SortItemWeightFunctor final +static const class SortItemWeightFunctor final { public: bool operator() (const ItemIdPair *const pair1, @@ -109,7 +109,7 @@ class SortItemWeightFunctor final } } itemWeightSorter; -class SortItemAmountFunctor final +static const class SortItemAmountFunctor final { public: bool operator() (const ItemIdPair *const pair1, @@ -129,7 +129,7 @@ class SortItemAmountFunctor final } } itemAmountSorter; -class SortItemTypeFunctor final +static const class SortItemTypeFunctor final { public: bool operator() (const ItemIdPair *const pair1, |