Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 15, 2014
1 parent 8f7c879 commit efec316
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsgml.h
Expand Up @@ -146,7 +146,7 @@ class CORE_EXPORT QgsGml : public QObject
/**Creates a set of points from a gml:posList or gml:pos coordinate string.
@param points list that will contain the created points
@param coordString the text containing the coordinates
@parem dimension number of dimensions
@param dimension number of dimensions
@return 0 in case of success
*/
int pointsFromPosListString( QList<QgsPoint>& points, const QString& coordString, int dimension ) const;
Expand Down
3 changes: 3 additions & 0 deletions src/providers/oracle/qgsoracleconn.cpp
Expand Up @@ -298,6 +298,9 @@ QString QgsOracleConn::quotedValue( const QVariant &value, QVariant::Type type )
return QString( "TO_DATE('%1','HH24:MI:SS')" ).arg( datetime.toString( "hh:mm:ss" ) );
break;
}

default:
break;
}
}

Expand Down

0 comments on commit efec316

Please sign in to comment.