Skip to content

Commit 514b03c

Browse files
committed
Fix missing bindings, headers and build
1 parent 45227e5 commit 514b03c

File tree

6 files changed

+30
-6
lines changed

6 files changed

+30
-6
lines changed

python/gui/symbology-ng/qgsrendererwidgetcontainer.sip

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class QgsRendererWidgetContainer : QWidget
66
{
77
%TypeHeaderCode
8-
#include <qgsrendererwidgetcontainer.h>
8+
#include "qgsrendererwidgetcontainer.h"
99
%End
1010
public:
1111
/**
@@ -29,9 +29,6 @@ class QgsRendererWidgetContainer : QWidget
2929
*/
3030
void accepted();
3131

32-
public slots:
33-
3432
protected:
3533
void keyPressEvent( QKeyEvent* event );
36-
3734
};

src/gui/raster/qgshillshaderendererwidget.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#ifndef QGSHILLSHADERENDERERWIDGET_H
1919
#define QGSHILLSHADERENDERERWIDGET_H
2020

21-
#include "ui_qghillshaderendererwidget.h"
21+
#include "ui_qgshillshaderendererwidget.h"
2222

2323
#include <QDoubleSpinBox>
2424

src/gui/symbology-ng/qgscategorizedsymbolrendererv2widget.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,6 @@ void QgsCategorizedSymbolRendererV2Widget::categoriesDoubleClicked( const QModel
602602

603603
void QgsCategorizedSymbolRendererV2Widget::changeCategorySymbol()
604604
{
605-
int catIdx = currentCategoryRow();
606605
QgsRendererCategoryV2 category = mRenderer->categories().value( currentCategoryRow() );
607606

608607
QgsSymbolV2 *symbol = category.symbol();

src/gui/symbology-ng/qgsrendererwidgetcontainer.cpp

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/***************************************************************************
2+
qgsrendererwidgetcontainer.cpp
3+
---------------------
4+
begin : June 2016
5+
copyright : (C) 2016 by Nathan Woodrow
6+
email :
7+
***************************************************************************
8+
* *
9+
* This program is free software; you can redistribute it and/or modify *
10+
* it under the terms of the GNU General Public License as published by *
11+
* the Free Software Foundation; either version 2 of the License, or *
12+
* (at your option) any later version. *
13+
* *
14+
***************************************************************************/
115
#include <QDialogButtonBox>
216
#include <QPushButton>
317

src/gui/symbology-ng/qgsrendererwidgetcontainer.h

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/***************************************************************************
2+
qgsrendererwidgetcontainer.h
3+
---------------------
4+
begin : June 2016
5+
copyright : (C) 2016 by Nathan Woodrow
6+
email :
7+
***************************************************************************
8+
* *
9+
* This program is free software; you can redistribute it and/or modify *
10+
* it under the terms of the GNU General Public License as published by *
11+
* the Free Software Foundation; either version 2 of the License, or *
12+
* (at your option) any later version. *
13+
* *
14+
***************************************************************************/
115
#ifndef QGSRENDERERWIDGETCONTAINER_H
216
#define QGSRENDERERWIDGETCONTAINER_H
317

0 commit comments

Comments
 (0)