Skip to content

Commit 103bee1

Browse files

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed
 

‎src/qgscontinuouscolrenderer.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
#include "qgspoint.h"
2525
#include "qgsfeature.h"
2626
#include <iostream>
27-
#include "qgsdlgvectorlayerproperties.h"
2827

2928
class QgsSymbol;
3029

‎src/qgssinglesymrenderer.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
#include "qgspoint.h"
2626
#include <qpainter.h>
2727
#include "qgsmaptopixel.h"
28-
#include "qgsdlgvectorlayerproperties.h"
2928
class QgsFeature;
3029

3130
/**Render class to display all the features with a single QgsSymbol*/

‎src/qgsvectorlayer.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ class QgsMapToPixel;
3333
class QgsData;
3434
class QgsRenderer;
3535
class QgsLegendItem;
36-
class QgsDlgVectorLayerProperties;
3736
class QgsGeometry;
3837
class QgsIdentifyResults;
3938
class QgsLabel;
@@ -49,7 +48,7 @@ class QgsLabel;
4948
#include "qgsgeometry.h"
5049
#include "qgsgeometryvertexindex.h"
5150
#include "qgsvectordataprovider.h"
52-
51+
#include "qgsvectorlayerproperties.h"
5352
class QgsAttributeTableDisplay;
5453

5554
/*! \class QgsVectorLayer
@@ -182,11 +181,11 @@ public slots:
182181
/**Sets the renderer. If a renderer is already present, it is deleted*/
183182
void setRenderer(QgsRenderer * r);
184183
/**Sets m_propertiesDialog*/
185-
void setLayerProperties(QgsDlgVectorLayerProperties * properties);
184+
void setLayerProperties(QgsVectorLayerProperties * properties);
186185
/**Returns point, line or polygon*/
187186
QGis::VectorType vectorType() const;
188187
/**Returns a pointer to the properties dialog*/
189-
QgsDlgVectorLayerProperties *propertiesDialog();
188+
QgsVectorLayerProperties *propertiesDialog();
190189
/**Returns the bounding box of the selected features. If there is no selection, QgsRect(0,0,0,0) is returned*/
191190
virtual QgsRect bBoxOfSelected();
192191
//! Return the provider type for this layer
@@ -445,7 +444,7 @@ public slots:
445444
/**Display labels */
446445
bool mLabelOn;
447446
/**Dialog to set the properties*/
448-
QgsDlgVectorLayerProperties *m_propertiesDialog;
447+
QgsVectorLayerProperties *m_propertiesDialog;
449448
/**Goes through all features and finds a free id (e.g. to give it temporarily to a not-commited feature)*/
450449
int findFreeId();
451450
/**Writes the changes to disk*/

‎src/ui/Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ qgis_ui_UIC = \
2525
qgsbookmarksbase.ui \
2626
qgscontcoldialogbase.ui \
2727
qgsdelattrdialogbase.ui \
28-
qgsdlgvectorlayerpropertiesbase.ui \
28+
qgsvectorlayerpropertiesbase.ui \
2929
qgsgeomtypedialogbase.ui \
3030
qgsgrasydialogbase.ui \
3131
qgshelpviewerbase.ui \
@@ -93,7 +93,7 @@ qgis_ui_UIHEADERS = ui_qgisappbase.h \
9393
ui_qgsbookmarksbase.h \
9494
ui_qgscontcoldialogbase.h \
9595
ui_qgsdelattrdialogbase.h \
96-
ui_qgsdlgvectorlayerpropertiesbase.h \
96+
ui_qgsvectorlayerpropertiesbase.h \
9797
ui_qgsgeomtypedialogbase.h \
9898
ui_qgsgrasydialogbase.h \
9999
ui_qgshelpviewerbase.h \

0 commit comments

Comments
 (0)
Please sign in to comment.