aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/kernel/outputpersistenceblock.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-09-02 17:11:45 +0000
committerEugene Sandulenko2010-10-12 23:32:32 +0000
commit06bce68860696f67f0a0ac1e9682635081918801 (patch)
treeaa64e048a3c8870f5305db8f112194ab874409d5 /engines/sword25/kernel/outputpersistenceblock.h
parent086f5961b6575c50bb386750b6e9a3ed1efdd8cd (diff)
downloadscummvm-rg350-06bce68860696f67f0a0ac1e9682635081918801.tar.gz
scummvm-rg350-06bce68860696f67f0a0ac1e9682635081918801.tar.bz2
scummvm-rg350-06bce68860696f67f0a0ac1e9682635081918801.zip
SWORD25: Comply to the code conventions for several classes
svn-id: r53310
Diffstat (limited to 'engines/sword25/kernel/outputpersistenceblock.h')
-rw-r--r--engines/sword25/kernel/outputpersistenceblock.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/sword25/kernel/outputpersistenceblock.h b/engines/sword25/kernel/outputpersistenceblock.h
index fab0552d31..154dbc9763 100644
--- a/engines/sword25/kernel/outputpersistenceblock.h
+++ b/engines/sword25/kernel/outputpersistenceblock.h
@@ -52,12 +52,12 @@ class OutputPersistenceBlock : public PersistenceBlock {
public:
OutputPersistenceBlock();
- void Write(signed int Value);
- void Write(uint Value);
- void Write(float Value);
- void Write(bool Value);
- void Write(const Common::String &String);
- void Write(const void *BufferPtr, size_t Size);
+ void write(signed int Value);
+ void write(uint Value);
+ void write(float Value);
+ void write(bool Value);
+ void write(const Common::String &String);
+ void write(const void *BufferPtr, size_t Size);
const void *GetData() const {
return &m_Data[0];