diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-24 20:51:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-24 20:51:36 +0300 |
commit | ca0ca278d0c4aed9a6d50bb9a8982f5261151ab8 (patch) | |
tree | 47df9210d64faca244f5244088b11cf19da42acf /src/gui/windows | |
parent | b7bbb09d62b55bed26d432a6a2af9831c6ec9143 (diff) | |
download | plus-ca0ca278d0c4aed9a6d50bb9a8982f5261151ab8.tar.gz plus-ca0ca278d0c4aed9a6d50bb9a8982f5261151ab8.tar.bz2 plus-ca0ca278d0c4aed9a6d50bb9a8982f5261151ab8.tar.xz plus-ca0ca278d0c4aed9a6d50bb9a8982f5261151ab8.zip |
Rename enum ItemType into ItemDbType.
Diffstat (limited to 'src/gui/windows')
-rw-r--r-- | src/gui/windows/buydialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/buydialog.cpp b/src/gui/windows/buydialog.cpp index c6be959de..b0cf5bc8c 100644 --- a/src/gui/windows/buydialog.cpp +++ b/src/gui/windows/buydialog.cpp @@ -160,8 +160,8 @@ namespace if (!item1 || !item2) return false; - const ItemTypeT type1 = item1->getInfo().getType(); - const ItemTypeT type2 = item2->getInfo().getType(); + const ItemDbTypeT type1 = item1->getInfo().getType(); + const ItemDbTypeT type2 = item2->getInfo().getType(); if (type1 == type2) return item1->getPrice() < item2->getPrice(); return type1 < type2; |