diff options
Diffstat (limited to 'kscreensaver/kdesavers/fountain.cpp')
-rw-r--r-- | kscreensaver/kdesavers/fountain.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kscreensaver/kdesavers/fountain.cpp b/kscreensaver/kdesavers/fountain.cpp index 2c208b4c..802bef5e 100644 --- a/kscreensaver/kdesavers/fountain.cpp +++ b/kscreensaver/kdesavers/fountain.cpp @@ -218,8 +218,8 @@ Fountain::~Fountain() /** load the particle file */ bool Fountain::loadParticle() { - /* tqStatus indicator */ - bool tqStatus = TRUE; + /* Status indicator */ + bool Status = TRUE; TQImage buf; kdDebug() << "Loading: " << locate("data", "kscreensaver/particle.png") << endl; @@ -238,7 +238,7 @@ bool Fountain::loadParticle() } /* Set the status to true */ - //tqStatus = TRUE; + //Status = TRUE; glGenTextures(1, &texture[0]); /* create three textures */ glBindTexture(GL_TEXTURE_2D, texture[0]); /* use linear filtering */ @@ -250,7 +250,7 @@ bool Fountain::loadParticle() - return tqStatus; + return Status; } /** setup the GL enviroment */ void Fountain::initializeGL () |