rename getRenderControl to the more precise createRenderControl

This commit is contained in:
Dana Jansens 2003-02-17 21:45:17 +00:00
parent b9a7d8f9ea
commit 59d5199828
3 changed files with 3 additions and 3 deletions

View file

@ -165,7 +165,7 @@ DISPLAY environment variable approriately.\n\n"));
_rendercontrol_list = new RenderControl*[ScreenCount(_display)];
for (int i = 0; i < ScreenCount(_display); ++i) {
_screeninfo_list[i] = new ScreenInfo(i);
_rendercontrol_list[i] = RenderControl::getRenderControl(i);
_rendercontrol_list[i] = RenderControl::createRenderControl(i);
}
}

View file

@ -32,7 +32,7 @@ extern "C" {
namespace otk {
RenderControl *RenderControl::getRenderControl(int screen)
RenderControl *RenderControl::createRenderControl(int screen)
{
// get the visual on the screen and return the correct type of RenderControl
int vclass = display->screenInfo(screen)->visual()->c_class;

View file

@ -46,7 +46,7 @@ protected:
public:
virtual ~RenderControl();
static RenderControl *getRenderControl(int screen);
static RenderControl *createRenderControl(int screen);
//! Draws a background onto a Surface, as specified by a RenderTexture
/*!