FULLPIPE: Renames in class MovGraphReact

This commit is contained in:
Eugene Sandulenko 2014-01-03 22:43:46 +02:00
parent 2fe8976700
commit 25aa1b72d9
2 changed files with 13 additions and 13 deletions

View File

@ -2027,20 +2027,20 @@ void ReactParallel::createRegion() {
// GdiObject::Attach(_rgn, CreatePolygonRgn(_points, 4, 2);
}
void ReactParallel::method14() {
warning("STUB: ReactParallel::method14()");
void ReactParallel::setCenter() {
warning("STUB: ReactParallel::setCenter()");
}
ReactPolygonal::ReactPolygonal() {
_field_C = 0;
_field_10 = 0;
_centerX = 0;
_centerY = 0;
}
bool ReactPolygonal::load(MfcArchive &file) {
debug(5, "ReactPolygonal::load()");
_field_C = file.readUint32LE();
_field_10 = file.readUint32LE();
_centerX = file.readUint32LE();
_centerY = file.readUint32LE();
_pointCount = file.readUint32LE();
if (_pointCount > 0) {
@ -2067,8 +2067,8 @@ void ReactPolygonal::createRegion() {
}
}
void ReactPolygonal::method14() {
warning("STUB: ReactPolygonal::method14()");
void ReactPolygonal::setCenter() {
warning("STUB: ReactPolygonal::setCenter()");
}
bool MovGraphReact::pointInRegion(int x, int y) {

View File

@ -74,7 +74,7 @@ public:
MovGraphReact() : _pointCount(0), _points(0) {}
~MovGraphReact() { free(_points); }
virtual void method14() {}
virtual void setCenter() {}
virtual void createRegion() {}
virtual bool pointInRegion(int x, int y);
};
@ -247,20 +247,20 @@ class ReactParallel : public MovGraphReact {
ReactParallel();
virtual bool load(MfcArchive &file);
virtual void method14();
virtual void setCenter();
virtual void createRegion();
};
class ReactPolygonal : public MovGraphReact {
//CRgn _rgn;
int _field_C;
int _field_10;
int _centerX;
int _centerY;
public:
ReactPolygonal();
virtual bool load(MfcArchive &file);
virtual void method14();
virtual void setCenter();
virtual void createRegion();
};