// projected point mPtScreen = mPtProj; // alignment offset mPtScreen += offsetAlign; // screen offset mPtScreen += mOffsetScreen; // setTrgPosition(mPtScreen); mBounds.point=mPtScreen;Problem being mBounds is private as of a few years ago. I'm not even going to pretend I'm comfortable with C++, but from what I've gathered this last line is to set the position of the control via mBounds.point (which is the topleftcorner of a ctrl to the best of my knowledge, forgive my ignorance). So getExtent() or getBounds, the replacement for retrieving extents with mBounds, wouldn't exactly work here, as those are functions that return a value, not the other way around.
Getting to the point, is there a replacement for mBounds.point?