Removed unused variable.

This commit is contained in:
dfighter1985 2014-08-06 13:01:44 +02:00
parent f22f9fbc08
commit 4f05fea63c
2 changed files with 0 additions and 3 deletions

View file

@ -304,7 +304,6 @@ TileItemNode::TileItemNode( TileConstants::TNodeTileType type, int tileId, Node
m_id = tileId; m_id = tileId;
m_parentItem = parent; m_parentItem = parent;
pvt = new TileItemNodePvt(); pvt = new TileItemNodePvt();
m_hasError = false;
for( int i = 0; i < TileConstants::TileChannelCount; i++ ) for( int i = 0; i < TileConstants::TileChannelCount; i++ )
{ {
@ -332,7 +331,6 @@ bool TileItemNode::setTileFilename(TileConstants::TTileChannel channel, QString
} }
bool b = pvt->loadImage( channel, fn, empty ); bool b = pvt->loadImage( channel, fn, empty );
m_hasError = !b;
if( !b ) if( !b )
return false; return false;

View file

@ -130,7 +130,6 @@ private:
TileItemNodePvt *pvt; TileItemNodePvt *pvt;
bool m_hasError;
}; };
#endif // TILE_ITEM_H #endif // TILE_ITEM_H