aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus/interface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pegasus/interface.cpp')
-rwxr-xr-xengines/pegasus/interface.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/pegasus/interface.cpp b/engines/pegasus/interface.cpp
index e9daecbd07..5e5188886e 100755
--- a/engines/pegasus/interface.cpp
+++ b/engines/pegasus/interface.cpp
@@ -294,11 +294,11 @@ void Interface::createInterface() {
}
}
-tInventoryResult Interface::addInventoryItem(InventoryItem *item) {
+InventoryResult Interface::addInventoryItem(InventoryItem *item) {
return _inventoryPanel.addInventoryItem(item);
}
-tInventoryResult Interface::removeInventoryItem(InventoryItem *item) {
+InventoryResult Interface::removeInventoryItem(InventoryItem *item) {
return _inventoryPanel.removeInventoryItem(item);
}
@@ -314,11 +314,11 @@ void Interface::setCurrentInventoryItem(InventoryItem *item) {
setCurrentInventoryItemID(item->getObjectID());
}
-void Interface::setCurrentInventoryItemID(tItemID id) {
+void Interface::setCurrentInventoryItemID(ItemID id) {
_inventoryPanel.setCurrentItemID(id);
}
-tInventoryResult Interface::addBiochip(BiochipItem *item) {
+InventoryResult Interface::addBiochip(BiochipItem *item) {
return _biochipPanel.addInventoryItem(item);
}
@@ -334,11 +334,11 @@ void Interface::setCurrentBiochip(BiochipItem *item) {
setCurrentBiochipID(item->getObjectID());
}
-void Interface::setCurrentBiochipID(tItemID id) {
+void Interface::setCurrentBiochipID(ItemID id) {
_biochipPanel.setCurrentItemID(id);
}
-void Interface::receiveNotification(Notification *notification, const tNotificationFlags flags) {
+void Interface::receiveNotification(Notification *notification, const NotificationFlags flags) {
if (notification == &_interfaceNotification) {
switch (flags) {
case kInventoryLidOpenFlag: