Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replaced 'unsigned int' with 'unsigned' | Thorbjørn Lindeijer | 2013-01-09 | 1 | -4/+4 |
| | | | | Same thing, but shorter. | ||||
* | Micro-optimizations related to std::string | Thorbjørn Lindeijer | 2011-03-17 | 1 | -2/+2 |
| | | | | | | | | * Rely on the fact that a std::string is empty by default * Use std::string::empty() rather than comparing to "" * Construct with std::string() rather than from "" Reviewed-by: Bertram | ||||
* | Removed a bunch of silly documentation | Thorbjørn Lindeijer | 2011-03-12 | 1 | -13/+0 |
| | | | | | | A C++ developer should be able to recognize a constructor and a destructor by just looking at it, so let's stop writing down the obvious. :) | ||||
* | Fix code indentation in the sql related files. | Yohann Ferreira | 2010-11-10 | 1 | -12/+12 |
| | | | | Trivial fix. | ||||
* | Update Copyright date for Manaserv. | Bertram | 2010-02-07 | 1 | -1/+1 |
| | |||||
* | Fixed name of the project in copyright headers | Thorbjørn Lindeijer | 2009-12-06 | 1 | -13/+13 |
| | | | | | | Also updated the headers to refer to the GPL by URL instead of suggesting to contact the FSF by snail mail, as per the latest GPL usage instructions. | ||||
* | A host of code style changes | Thorbjørn Lindeijer | 2009-12-06 | 1 | -14/+9 |
| | | | | | | Removed pointless void in method parameter lists, fixed methods and variables that started with upper case, removed pointless 'const' for stuff passed by value, made some getters const, etc. | ||||
* | Got rid of CVS/Subversion $Id$ markers | Bjørn Lindeijer | 2008-11-16 | 1 | -3/+0 |
| | |||||
* | Implementation of chat channels by Trapdoor. | Philipp Sehmisch | 2007-02-27 | 1 | -0/+2 |
| | |||||
* | First step toward a restructured class hierarchy for world actors: add | Guillaume Melquiond | 2006-07-27 | 1 | -4/+0 |
| | | | | | | MovingObject and Player classes. | ||||
* | Grammar Corrections, and a little bit of work on getting the name of the Db. | Yohann Ferreira | 2005-10-23 | 1 | -0/+3 |
| | |||||
* | Made sure that pointers are initalized and reset to null after deallocation ↵ | Huynh Tran | 2005-06-21 | 1 | -2/+16 |
| | | | | and some reformatting. | ||||
* | Correcting indent and removing obsoleted files. | Bjørn Lindeijer | 2005-06-19 | 1 | -37/+37 |
| | |||||
* | Removed USE_SQLITE define from configure.ac (not used anywhere anymore) | Aaron Marks | 2005-06-19 | 1 | -3/+3 |
| | | | | | Fixed problem with PGconn not being cleaned up. | ||||
* | Added PostgreSQL DAL class. | Aaron Marks | 2005-06-19 | 1 | -0/+151 |
Updated configure.ac to include PostgreSQL & MySQL. (MySQL needs to be adjusted, and it seems that using --with-sqlite will drop out of configure after check for atexit. I dont know why, as i didn't touch the SQLite stuff) :) |