diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-27 17:39:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-27 17:39:31 -0600 |
commit | 40ec27a2027ed46fcc58a053d58b937b12eb1d44 (patch) | |
tree | 92a996ce559d83571a5056648da8a9dcef2128b0 /examples/qtgl | |
parent | fe11d49a5c1ad404acdc3e74f8a4e6dcbebaea47 (diff) | |
download | libksquirrel-40ec27a2027ed46fcc58a053d58b937b12eb1d44.tar.gz libksquirrel-40ec27a2027ed46fcc58a053d58b937b12eb1d44.zip |
Rename tqt3 color functions
Diffstat (limited to 'examples/qtgl')
-rw-r--r-- | examples/qtgl/myqgl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/qtgl/myqgl.cpp b/examples/qtgl/myqgl.cpp index 42fe1da..b401bd1 100644 --- a/examples/qtgl/myqgl.cpp +++ b/examples/qtgl/myqgl.cpp @@ -69,7 +69,7 @@ void MyQGL::loadImage() if(!lib.isLoaded()) { qWarning("Can't load BMP library."); - qApp->quit(); + tqApp->quit(); } int i = 0; @@ -86,7 +86,7 @@ void MyQGL::loadImage() { qWarning("Library corrupted."); lib.unload(); - qApp->quit(); + tqApp->quit(); } const char *s = "../w3.bmp"; @@ -96,7 +96,7 @@ void MyQGL::loadImage() { qWarning("Can't find example image."); lib.unload(); - qApp->quit(); + tqApp->quit(); } // OK, create decoder |