Skip to content

Commit

Permalink
libdeng2: Continued code style update
Browse files Browse the repository at this point in the history
A few more updates.
  • Loading branch information
skyjake committed Nov 24, 2012
1 parent a30430a commit 2725eab
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ namespace de
void operator << (Reader &from);

private:
typedef std::pair<Expression*, Expression *> ExpressionPair;
typedef std::pair<Expression *, Expression *> ExpressionPair;
typedef std::vector<ExpressionPair> Arguments;
Arguments _arguments;
};
Expand Down
2 changes: 1 addition & 1 deletion doomsday/libdeng2/src/core/log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace internal {
* The logs table is lockable so that multiple threads can access their logs at
* the same time.
*/
class Logs : public QMap<QThread*, Log *>, public Lockable
class Logs : public QMap<QThread *, Log *>, public Lockable
{
public:
Logs() {}
Expand Down
4 changes: 2 additions & 2 deletions doomsday/libdeng2/src/data/pathtree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ int PathTree::findAllPaths(FoundPaths &found, ComparisonFlags flags, QChar delim

static int iteratePathsInHash(PathTree const &pathTree, Path::hash_type hashKey,
PathTree::NodeType type, int flags, PathTree::Node *parent,
int (*callback) (PathTree::Node&, void *), void *parameters)
int (*callback) (PathTree::Node &, void *), void *parameters)
{
int result = 0;

Expand Down Expand Up @@ -354,7 +354,7 @@ static int iteratePathsInHash(PathTree const &pathTree, Path::hash_type hashKey,
}

int PathTree::traverse(ComparisonFlags flags, PathTree::Node *parent, Path::hash_type hashKey,
int (*callback) (PathTree::Node&, void *), void *parameters) const
int (*callback) (PathTree::Node &, void *), void *parameters) const
{
int result = 0;
if(callback)
Expand Down
2 changes: 1 addition & 1 deletion doomsday/libdeng2/src/data/ziparchive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ ZipArchive::ZipArchive(IByteArray const &archive) : Archive(archive)
ZipArchive::~ZipArchive()
{}

void ZipArchive::readFromSource(Entry const *e, const String&, IBlock &uncompressedData) const
void ZipArchive::readFromSource(Entry const *e, String const &, IBlock &uncompressedData) const
{
ZipEntry const &entry = *static_cast<ZipEntry const *>(e);

Expand Down

0 comments on commit 2725eab

Please sign in to comment.