diff options
author | Eugene Sandulenko | 2012-04-28 01:00:14 +0300 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-06-02 12:42:08 +0200 |
commit | 28c78b956dac6ee59d066f7ff2499569fe9877c7 (patch) | |
tree | 07e37e79e5610d3f21d22a8243083b78e09f8542 /engines/wintermute/BActiveRect.h | |
parent | 84fd9d0daca1846829b077aa18a7634df5e5ef9e (diff) | |
download | scummvm-rg350-28c78b956dac6ee59d066f7ff2499569fe9877c7.tar.gz scummvm-rg350-28c78b956dac6ee59d066f7ff2499569fe9877c7.tar.bz2 scummvm-rg350-28c78b956dac6ee59d066f7ff2499569fe9877c7.zip |
WINTERMUTE: Mass rename m_FooBar -> _fooBar
Diffstat (limited to 'engines/wintermute/BActiveRect.h')
-rw-r--r-- | engines/wintermute/BActiveRect.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/engines/wintermute/BActiveRect.h b/engines/wintermute/BActiveRect.h index ee9bb8aea1..9143c1fa6e 100644 --- a/engines/wintermute/BActiveRect.h +++ b/engines/wintermute/BActiveRect.h @@ -38,15 +38,15 @@ class CBObject; class CBActiveRect: CBBase {
public:
void ClipRect();
- bool m_Precise;
- float m_ZoomX;
- float m_ZoomY;
- CBSubFrame *m_Frame;
- CBObject *m_Owner;
- CBRegion *m_Region;
- int m_OffsetX;
- int m_OffsetY;
- RECT m_Rect;
+ bool _precise;
+ float _zoomX;
+ float _zoomY;
+ CBSubFrame *_frame;
+ CBObject *_owner;
+ CBRegion *_region;
+ int _offsetX;
+ int _offsetY;
+ RECT _rect;
CBActiveRect(CBGame *inGameOwner = NULL);
CBActiveRect(CBGame *inGameOwner, CBObject *Owner, CBSubFrame *Frame, int X, int Y, int Width, int Height, float ZoomX = 100, float ZoomY = 100, bool Precise = true);
CBActiveRect(CBGame *inGame, CBObject *Owner, CBRegion *Region, int OffsetX, int OffsetY);
|