diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-02-02 18:01:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-02-02 18:12:41 +0300 |
commit | ab4a00c231e84267c7d06b2b1bb167593f22d91f (patch) | |
tree | 63b34f392cf88fb2db6b7a253e3978235c7fbe58 /src/gui/buydialog.cpp | |
parent | 67ab809edd61bbcf7f22b79c0fa212cfe2625efb (diff) | |
download | plus-ab4a00c231e84267c7d06b2b1bb167593f22d91f.tar.gz plus-ab4a00c231e84267c7d06b2b1bb167593f22d91f.tar.bz2 plus-ab4a00c231e84267c7d06b2b1bb167593f22d91f.tar.xz plus-ab4a00c231e84267c7d06b2b1bb167593f22d91f.zip |
Fix errors in some compilers.v1.3.2.3
Diffstat (limited to 'src/gui/buydialog.cpp')
-rw-r--r-- | src/gui/buydialog.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/buydialog.cpp b/src/gui/buydialog.cpp index 40e7648a6..2fc49d240 100644 --- a/src/gui/buydialog.cpp +++ b/src/gui/buydialog.cpp @@ -78,7 +78,7 @@ public: } }; -static const class SortItemPriceFunctor final +static class SortItemPriceFunctor final { public: bool operator() (const ShopItem *const item1, @@ -95,7 +95,7 @@ static const class SortItemPriceFunctor final } } itemPriceSorter; -static const class SortItemNameFunctor final +static class SortItemNameFunctor final { public: bool operator() (const ShopItem *const item1, @@ -112,7 +112,7 @@ static const class SortItemNameFunctor final } } itemNameSorter; -static const class SortItemIdFunctor final +static class SortItemIdFunctor final { public: bool operator() (const ShopItem *const item1, @@ -129,7 +129,7 @@ static const class SortItemIdFunctor final } } itemIdSorter; -static const class SortItemWeightFunctor final +static class SortItemWeightFunctor final { public: bool operator() (const ShopItem *const item1, @@ -146,7 +146,7 @@ static const class SortItemWeightFunctor final } } itemWeightSorter; -static const class SortItemAmountFunctor final +static class SortItemAmountFunctor final { public: bool operator() (const ShopItem *const item1, @@ -163,7 +163,7 @@ static const class SortItemAmountFunctor final } } itemAmountSorter; -static const class SortItemTypeFunctor final +static class SortItemTypeFunctor final { public: bool operator() (const ShopItem *const item1, |