Removed yet another unused variable.
This commit is contained in:
parent
4f05fea63c
commit
3fc31ee2ad
1 changed files with 2 additions and 4 deletions
|
@ -269,7 +269,7 @@ public:
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
bool loadImage( TileConstants::TTileChannel channel, const QString &fn, bool empty = false )
|
bool loadImage( TileConstants::TTileChannel channel, const QString &fn )
|
||||||
{
|
{
|
||||||
QPixmap temp;
|
QPixmap temp;
|
||||||
bool b = temp.load( fn );
|
bool b = temp.load( fn );
|
||||||
|
@ -322,15 +322,13 @@ TileItemNode::~TileItemNode()
|
||||||
bool TileItemNode::setTileFilename(TileConstants::TTileChannel channel, QString filename)
|
bool TileItemNode::setTileFilename(TileConstants::TTileChannel channel, QString filename)
|
||||||
{
|
{
|
||||||
QString fn = filename;
|
QString fn = filename;
|
||||||
bool empty = false;
|
|
||||||
|
|
||||||
if( filename.isEmpty() || ( filename == "empty" ) )
|
if( filename.isEmpty() || ( filename == "empty" ) )
|
||||||
{
|
{
|
||||||
fn = ":/placeHolder/images/empty_image.png";
|
fn = ":/placeHolder/images/empty_image.png";
|
||||||
empty = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool b = pvt->loadImage( channel, fn, empty );
|
bool b = pvt->loadImage( channel, fn );
|
||||||
if( !b )
|
if( !b )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue