Skip to content

Commit

Permalink
fix some lupdate warnings
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8682 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jun 28, 2008
1 parent 2bff3d4 commit d086a09
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 4 deletions.
4 changes: 4 additions & 0 deletions src/app/CMakeLists.txt
Expand Up @@ -100,6 +100,9 @@ SET (QGIS_APP_MOC_HDRS
qgsludialog.h
qgsmaplayerinterface.h
qgsmaptoolidentify.h
qgsmaptoolsplitfeatures.h
qgsmaptoolvertexedit.h
qgsmeasuretool.h
qgsmeasuredialog.h
qgsnewhttpconnection.h
qgsoptions.h
Expand All @@ -114,6 +117,7 @@ SET (QGIS_APP_MOC_HDRS
qgssnappingdialog.h
qgsuniquevaluedialog.h
qgsvectorlayerproperties.h
qgsdbtablemodel.h

composer/qgscomposer.h
composer/qgscomposerlabel.h
Expand Down
1 change: 1 addition & 0 deletions src/app/qgsdbtablemodel.h
Expand Up @@ -23,6 +23,7 @@ schemas are the root elements that contain the individual tables as children.
The tables have the following columns: Type, Schema, Tablename, Geometry Column, Sql*/
class QgsDbTableModel: public QStandardItemModel
{
Q_OBJECT;
public:
QgsDbTableModel();
~QgsDbTableModel();
Expand Down
1 change: 1 addition & 0 deletions src/app/qgsmaptoolsplitfeatures.h
Expand Up @@ -22,6 +22,7 @@
/**A map tool that draws a line and splits the features cut by the line*/
class QgsMapToolSplitFeatures: public QgsMapToolCapture
{
Q_OBJECT;
public:
QgsMapToolSplitFeatures(QgsMapCanvas* canvas);
virtual ~QgsMapToolSplitFeatures();
Expand Down
2 changes: 2 additions & 0 deletions src/app/qgsmaptoolvertexedit.h
Expand Up @@ -26,6 +26,8 @@
QgsMapToolDeleteVertex*/
class QgsMapToolVertexEdit: public QgsMapToolEdit
{
Q_OBJECT;

public:

QgsMapToolVertexEdit(QgsMapCanvas* canvas);
Expand Down
1 change: 1 addition & 0 deletions src/app/qgsmeasuretool.h
Expand Up @@ -29,6 +29,7 @@ class QgsRubberBand;

class QgsMeasureTool : public QgsMapTool
{
Q_OBJECT;

public:

Expand Down
4 changes: 2 additions & 2 deletions src/core/raster/qgsrasterlayer.h
Expand Up @@ -101,14 +101,14 @@
* myRasterLayer->setDrawingStyle(QgsRasterLayer::SINGLE_BAND_PSEUDO_COLOR);
* }
*
* Raster layers can also have an arbitary level of transparency defined, and have their
* Raster layers can also have an arbitrary level of transparency defined, and have their
* color palettes inverted using the setTransparency and setInvertHistogramFlag methods.
*
* Pseudocolor images can have their output adjusted to a given number of standard
* deviations using the setStdDevsToPlot method.
*
* The final area of functionality you may be interested in is band mapping. Band mapping
* allows you to choose arbitary band -> color mappings and is applicable only to PALETTE
* allows you to choose arbitrary band -> color mappings and is applicable only to PALETTE
* and MULTIBAND rasters, There are four mappings that can be made: red, green, blue and gray.
* Mappings are non-exclusive. That is a given band can be assigned to no, some or all
* color mappings. The constructor sets sensible defaults for band mappings but these can be
Expand Down
3 changes: 3 additions & 0 deletions src/providers/delimitedtext/CMakeLists.txt
Expand Up @@ -4,6 +4,9 @@

SET (DTEXT_SRCS qgsdelimitedtextprovider.cpp)

SET (DTEXT_MOC_HDRS
qgsdelimitedtextprovider.h
)

########################################################
# Build
Expand Down
2 changes: 2 additions & 0 deletions src/providers/delimitedtext/qgsdelimitedtextprovider.h
Expand Up @@ -42,6 +42,8 @@ class QTextStream;
*/
class QgsDelimitedTextProvider : public QgsVectorDataProvider
{
Q_OBJECT;

public:

QgsDelimitedTextProvider(QString uri = QString());
Expand Down
8 changes: 6 additions & 2 deletions src/providers/gpx/CMakeLists.txt
Expand Up @@ -2,7 +2,11 @@
########################################################
# Files

SET (OGR_SRCS qgsgpxprovider.cpp gpsdata.cpp)
SET (GPX_SRCS qgsgpxprovider.cpp gpsdata.cpp)

SET (GPX_MOC_HDRS
qgsgpxprovider.h
)


########################################################
Expand All @@ -14,7 +18,7 @@ INCLUDE_DIRECTORIES(
${EXPAT_INCLUDE_DIR}
)

ADD_LIBRARY(gpxprovider MODULE ${OGR_SRCS})
ADD_LIBRARY(gpxprovider MODULE ${GPX_SRCS})

TARGET_LINK_LIBRARIES(gpxprovider
${QT_QTCORE_LIBRARY}
Expand Down
1 change: 1 addition & 0 deletions src/providers/gpx/qgsgpxprovider.h
Expand Up @@ -37,6 +37,7 @@ class GPSData;
*/
class QgsGPXProvider : public QgsVectorDataProvider
{
Q_OBJECT;

public:

Expand Down

0 comments on commit d086a09

Please sign in to comment.