Skip to content

Commit efec316

Browse files
committedFeb 15, 2014
fix warnings
1 parent 8f7c879 commit efec316

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

‎src/core/qgsgml.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class CORE_EXPORT QgsGml : public QObject
146146
/**Creates a set of points from a gml:posList or gml:pos coordinate string.
147147
@param points list that will contain the created points
148148
@param coordString the text containing the coordinates
149-
@parem dimension number of dimensions
149+
@param dimension number of dimensions
150150
@return 0 in case of success
151151
*/
152152
int pointsFromPosListString( QList<QgsPoint>& points, const QString& coordString, int dimension ) const;

‎src/providers/oracle/qgsoracleconn.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,9 @@ QString QgsOracleConn::quotedValue( const QVariant &value, QVariant::Type type )
298298
return QString( "TO_DATE('%1','HH24:MI:SS')" ).arg( datetime.toString( "hh:mm:ss" ) );
299299
break;
300300
}
301+
302+
default:
303+
break;
301304
}
302305
}
303306

0 commit comments

Comments
 (0)
Please sign in to comment.