Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix a unused warning
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7698 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Dec 1, 2007
1 parent 3899326 commit 5ff8ecf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/core/raster/qgsrasterlayer.h
Expand Up @@ -169,7 +169,7 @@ The [type] part of the variable should be the type class of the variable written
#include <QVector>
#include <QList>


#include "qgis.h"
#include "qgspoint.h"
#include "qgsmaplayer.h"

Expand Down Expand Up @@ -765,7 +765,11 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
return false;
} //todo

bool isSymbologyCompatible(const QgsMapLayer& other) const {return false;} //todo
bool isSymbologyCompatible(const QgsMapLayer& other) const
{
UNUSED(other);
return false;
} //todo

/**
* If an operation returns 0 (e.g. draw()), this function
Expand Down

0 comments on commit 5ff8ecf

Please sign in to comment.