Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed a bug with incorrectly wrapped QgsRenderer
git-svn-id: http://svn.osgeo.org/qgis/trunk@6969 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed May 31, 2007
1 parent 44d8225 commit 825e248
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/core/qgsrenderer.sip
@@ -1,6 +1,6 @@

/**Abstract base class for renderers. A renderer holds all the information necessary to draw the contents of a vector layer to a map canvas. The vector layer then passes each feature to paint to the renderer*/
class QgsRenderer /Abstract/
class QgsRenderer
{
%TypeHeaderCode
#include <qgsrenderer.h>
Expand All @@ -27,7 +27,7 @@ class QgsRenderer /Abstract/
/** Returns true, if attribute values are used by the renderer and false otherwise*/
virtual bool needsAttributes() const=0;
/**Returns a list with indexes of classification attributes*/
QList<int> classificationAttributes() const=0;
virtual QList<int> classificationAttributes() const=0;
/**Returns the renderers name*/
virtual QString name() const=0;
/**Return symbology items*/
Expand Down

0 comments on commit 825e248

Please sign in to comment.