aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/ad/ad_response_context.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-21 21:01:47 +0200
committerEinar Johan Trøan Sømåen2012-07-21 21:01:47 +0200
commitb5a07fef8ebf29f7f44b15d9b34799c7e115fdad (patch)
tree76599c7b51aa6ad0447cb6ff6847f9eba54a679a /engines/wintermute/ad/ad_response_context.h
parent2e82471240804df65acdf51c43ea044cbb81ae68 (diff)
downloadscummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.tar.gz
scummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.tar.bz2
scummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.zip
WINTERMUTE: Get rid of the C-prefix for class-definitions.
Diffstat (limited to 'engines/wintermute/ad/ad_response_context.h')
-rw-r--r--engines/wintermute/ad/ad_response_context.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/ad/ad_response_context.h b/engines/wintermute/ad/ad_response_context.h
index 79eaa27640..d0dc1546b7 100644
--- a/engines/wintermute/ad/ad_response_context.h
+++ b/engines/wintermute/ad/ad_response_context.h
@@ -34,14 +34,14 @@
namespace WinterMute {
-class CAdResponseContext : public CBBase {
+class AdResponseContext : public BaseClass {
public:
void setContext(const char *context);
int _iD;
char *_context;
- DECLARE_PERSISTENT(CAdResponseContext, CBBase)
- CAdResponseContext(CBGame *inGame);
- virtual ~CAdResponseContext();
+ DECLARE_PERSISTENT(AdResponseContext, BaseClass)
+ AdResponseContext(BaseGame *inGame);
+ virtual ~AdResponseContext();
};