summaryrefslogtreecommitdiff
path: root/src/gui/trade.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2008-01-26 19:38:43 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2008-01-26 19:38:43 +0000
commitb58257925cd2af493f9576b0e7579ce5005ae4eb (patch)
tree53fc94f82b3aee4384652ab50400c4bb044780ef /src/gui/trade.h
parent662560fe671a54023acb03d4c80dffbf039d2e16 (diff)
downloadmana-client-b58257925cd2af493f9576b0e7579ce5005ae4eb.tar.gz
mana-client-b58257925cd2af493f9576b0e7579ce5005ae4eb.tar.bz2
mana-client-b58257925cd2af493f9576b0e7579ce5005ae4eb.tar.xz
mana-client-b58257925cd2af493f9576b0e7579ce5005ae4eb.zip
Fixed a GCC 4.3 compile error and constified the usage of auto_ptr, since
that's the way in which we are using them.
Diffstat (limited to 'src/gui/trade.h')
-rw-r--r--src/gui/trade.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/trade.h b/src/gui/trade.h
index cf792c19..49deb899 100644
--- a/src/gui/trade.h
+++ b/src/gui/trade.h
@@ -117,7 +117,7 @@ class TradeWindow : public Window, gcn::ActionListener, SelectionListener
private:
Network *mNetwork;
- typedef std::auto_ptr<Inventory> InventoryPtr;
+ typedef const std::auto_ptr<Inventory> InventoryPtr;
InventoryPtr mMyInventory;
InventoryPtr mPartnerInventory;