Rename tqt3 color functions

r14.0.x
Timothy Pearson 12 years ago
parent fe11d49a5c
commit 40ec27a202

@ -25,7 +25,7 @@ QPixmap MyQT::loadImage()
if(!lib.isLoaded())
{
qWarning("Can't load BMP library.");
qApp->quit();
tqApp->quit();
}
int i = 0;
@ -40,7 +40,7 @@ QPixmap MyQT::loadImage()
{
qWarning("Library corrupted.");
lib.unload();
qApp->quit();
tqApp->quit();
}
const char *s = "../w3.bmp";
@ -49,7 +49,7 @@ QPixmap MyQT::loadImage()
{
qWarning("Can't find example image.");
lib.unload();
qApp->quit();
tqApp->quit();
}
codeK = codec_create();

@ -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

Loading…
Cancel
Save