Fixed indentation issues

This commit is contained in:
Robert Osfield
2011-06-16 13:00:28 +00:00
parent 375c1456f6
commit 93d1fedd0b
11 changed files with 315 additions and 314 deletions

View File

@@ -98,10 +98,10 @@ class WriteWrapper : public trpgr_Callback {
public:
WriteWrapper(trpgReadWriteable *in_wr) { wr = in_wr; };
void *Parse(trpgToken,trpgReadBuffer &buf) {
if (wr->Read(buf))
return wr;
else
return NULL;
if (wr->Read(buf))
return wr;
else
return NULL;
}
protected:
trpgReadWriteable *wr;