Skip to content

Commit f6c28ee

Browse files
author
jef
committedNov 15, 2010
fix build errors
git-svn-id: http://svn.osgeo.org/qgis/trunk@14687 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 2f85efe commit f6c28ee

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed
 

‎src/app/qgssinglesymboldialog.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -646,10 +646,6 @@ void QgsSingleSymbolDialog::setLabel( QString label )
646646

647647
void QgsSingleSymbolDialog::symbolChanged( const QModelIndex &current, const QModelIndex &previous )
648648
{
649-
QAbstractItemModel *m = lstSymbols->model();
650-
QgsDebugMsg( QString( "symbol changed to %1:%2" ).arg( current.row() ).arg( m->data( current, Qt::UserRole ).toString() ) );
651-
// m->setData( current, Qt::UserRole+1, Qt::cyan );
652-
// m->setData( previous, Qt::UserRole+1, Qt::white );
653649
emit settingsChanged();
654650
}
655651

‎src/app/qgsvectorlayerproperties.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
#include <QSettings>
5555
#include <QComboBox>
5656
#include <QCheckBox>
57+
#include <QHeaderView>
5758

5859
#include "qgsrendererv2propertiesdialog.h"
5960
#include "qgsstylev2.h"

‎src/core/qgis.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#ifdef WIN32
3131
#include <float.h>
3232
#define isnan(f) _isnan(f)
33+
#define isinf(f) (!_isfinite(f) && !_isnan(f))
3334
#endif
3435

3536
/** \ingroup core

0 commit comments

Comments
 (0)
Please sign in to comment.