diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-10-02 13:38:27 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-10-02 13:38:27 +0000 |
commit | 4df1759a3636108839f9533268c8ce1b7156e132 (patch) | |
tree | c8ce12529845eecb930907829ca1ad3805f79628 /src/resources/buddylist.h | |
parent | fcaec2c34641a5dc3da7423e81ad7b1415fe078d (diff) | |
download | mana-4df1759a3636108839f9533268c8ce1b7156e132.tar.gz mana-4df1759a3636108839f9533268c8ce1b7156e132.tar.bz2 mana-4df1759a3636108839f9533268c8ce1b7156e132.tar.xz mana-4df1759a3636108839f9533268c8ce1b7156e132.zip |
Added check for pthread library (needed for FreeBSD, still needs to be checked
on MacOS X) and some cleanups.
Diffstat (limited to 'src/resources/buddylist.h')
-rw-r--r-- | src/resources/buddylist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/buddylist.h b/src/resources/buddylist.h index 33c85723..df5d6247 100644 --- a/src/resources/buddylist.h +++ b/src/resources/buddylist.h @@ -54,7 +54,7 @@ class BuddyList : public gcn::ListModel { /** * Returns the number of buddy on the list */ - int getNumberOfElements(void); + int getNumberOfElements(); /** * Returns the buddy of the number or null @@ -65,12 +65,12 @@ class BuddyList : public gcn::ListModel { /** * Save buddy to file */ - void saveFile(void); + void saveFile(); /** * Load buddy from file */ - void loadFile(void); + void loadFile(); std::list<std::string> buddylist; /**< Buddy list */ std::list<std::string>::iterator buddyit; /**< Iterator */ |