summaryrefslogtreecommitdiffstats
path: root/src/account-server/storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/account-server/storage.h')
-rw-r--r--src/account-server/storage.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/account-server/storage.h b/src/account-server/storage.h
index b71be22..f58738f 100644
--- a/src/account-server/storage.h
+++ b/src/account-server/storage.h
@@ -101,7 +101,7 @@ class Storage
*
* @return the id of the character
*/
- unsigned int getCharacterId(const std::string &name);
+ unsigned getCharacterId(const std::string &name);
/**
* Add an account to the database.
@@ -152,7 +152,7 @@ class Storage
* @param base The base value of the attribute for this character
* @param mod The cached modified value for this character.
*/
- void updateAttribute(int charId, unsigned int attrId,
+ void updateAttribute(int charId, unsigned attrId,
double base, double mod);
/**
@@ -427,7 +427,7 @@ class Storage
*
* @return the database version number.
*/
- unsigned int getItemDatabaseVersion() const
+ unsigned getItemDatabaseVersion() const
{ return mItemDbVersion; }
/**
@@ -450,7 +450,7 @@ class Storage
*
* @return a vector of transactions.
*/
- std::vector<Transaction> getTransactions(unsigned int num);
+ std::vector<Transaction> getTransactions(unsigned num);
/**
* Retrieve all transactions since the given \a date.
@@ -508,7 +508,7 @@ class Storage
void syncDatabase();
dal::DataProvider *mDb; /**< the data provider */
- unsigned int mItemDbVersion; /**< Version of the item database. */
+ unsigned mItemDbVersion; /**< Version of the item database. */
};
extern Storage *storage;