From 669c15eda90966c51ae11735c5fe7edfbefbc6fc Mon Sep 17 00:00:00 2001
From: dfighter1985 <none@none>
Date: Wed, 6 Aug 2014 13:04:30 +0200
Subject: [PATCH] Removed yet another unused variable.

--HG--
branch : gsoc2014-dfighter
---
 code/studio/src/plugins/tile_editor/tile_item.cpp | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/code/studio/src/plugins/tile_editor/tile_item.cpp b/code/studio/src/plugins/tile_editor/tile_item.cpp
index 04889e61b..311b711cc 100644
--- a/code/studio/src/plugins/tile_editor/tile_item.cpp
+++ b/code/studio/src/plugins/tile_editor/tile_item.cpp
@@ -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;
 		bool b = temp.load( fn );
@@ -322,15 +322,13 @@ TileItemNode::~TileItemNode()
 bool TileItemNode::setTileFilename(TileConstants::TTileChannel channel, QString filename)
 {
 	QString fn = filename;
-	bool empty = false;
 
 	if( filename.isEmpty() || ( filename == "empty" ) )
 	{
 		fn = ":/placeHolder/images/empty_image.png";
-		empty = true;
 	}
 
-	bool b = pvt->loadImage( channel, fn, empty );
+	bool b = pvt->loadImage( channel, fn );
 	if( !b )
 		return false;