Skip to content

Commit 656d5e2

Browse files
author
wonder
committed
Fixed a bug with incorrectly wrapped QgsRenderer
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6969 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 52c37ff commit 656d5e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/core/qgsrenderer.sip

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
/**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*/
3-
class QgsRenderer /Abstract/
3+
class QgsRenderer
44
{
55
%TypeHeaderCode
66
#include <qgsrenderer.h>
@@ -27,7 +27,7 @@ class QgsRenderer /Abstract/
2727
/** Returns true, if attribute values are used by the renderer and false otherwise*/
2828
virtual bool needsAttributes() const=0;
2929
/**Returns a list with indexes of classification attributes*/
30-
QList<int> classificationAttributes() const=0;
30+
virtual QList<int> classificationAttributes() const=0;
3131
/**Returns the renderers name*/
3232
virtual QString name() const=0;
3333
/**Return symbology items*/

0 commit comments

Comments
 (0)