aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/pet_control/pet_remote_glyphs.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-09-01 19:10:36 -0400
committerPaul Gilbert2016-09-01 19:10:36 -0400
commit33737ea2dcd97026706dd75f8c2c27fa148c165a (patch)
tree29784cf3e7c9270b02a67f0fe02829d3bab9bbd2 /engines/titanic/pet_control/pet_remote_glyphs.cpp
parentac740c8e39113f0cd50def490dba1c6d51e07e99 (diff)
downloadscummvm-rg350-33737ea2dcd97026706dd75f8c2c27fa148c165a.tar.gz
scummvm-rg350-33737ea2dcd97026706dd75f8c2c27fa148c165a.tar.bz2
scummvm-rg350-33737ea2dcd97026706dd75f8c2c27fa148c165a.zip
TITANIC: Convert many static_casts to dynamic_cast
Diffstat (limited to 'engines/titanic/pet_control/pet_remote_glyphs.cpp')
-rw-r--r--engines/titanic/pet_control/pet_remote_glyphs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/titanic/pet_control/pet_remote_glyphs.cpp b/engines/titanic/pet_control/pet_remote_glyphs.cpp
index 6b7c8cb4ae..35a7ab39ac 100644
--- a/engines/titanic/pet_control/pet_remote_glyphs.cpp
+++ b/engines/titanic/pet_control/pet_remote_glyphs.cpp
@@ -29,7 +29,7 @@
namespace Titanic {
CPetRemote *CPetRemoteGlyphs::getOwner() const {
- return static_cast<CPetRemote *>(_owner);
+ return dynamic_cast<CPetRemote *>(_owner);
}
void CPetRemoteGlyphs::generateMessage(RemoteMessage msgNum, const CString &name, int num) {
@@ -44,11 +44,11 @@ void CPetRemoteGlyph::setDefaults(const CString &name, CPetControl *petControl)
}
CPetRemoteGlyphs *CPetRemoteGlyph::getOwner() const {
- return static_cast<CPetRemoteGlyphs *>(_owner);
+ return dynamic_cast<CPetRemoteGlyphs *>(_owner);
}
CPetGfxElement *CPetRemoteGlyph::getElement(uint id) const {
- CPetRemote *remote = static_cast<CPetRemote *>(_owner->getOwner());
+ CPetRemote *remote = dynamic_cast<CPetRemote *>(_owner->getOwner());
return remote->getElement(id);
}