Skip to content

Commit cbe1e40

Browse files
committed
fix doxygen warnings
1 parent 4d0551f commit cbe1e40

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/analysis/raster/qgsrelief.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,11 @@ class ANALYSIS_EXPORT QgsRelief
110110
int frequencyClassForElevation( double elevation, double minElevation, double elevationClassRange );
111111
/**Do one iteration of class break optimisation (algorithm from Garcia and Rodriguez)*/
112112
void optimiseClassBreaks( QList<int>& breaks, double* frequencies );
113-
/**Calculates coefficients a (slope) and b (y value for x=0)
114-
@param input data points ( elevation class / frequency )*/
113+
/**Calculates coefficients a and b
114+
@param input data points ( elevation class / frequency )
115+
@param a slope
116+
@param b y value for x=0
117+
*/
115118
bool calculateRegression( const QList< QPair < int, double > >& input, double& a, double& b );
116119
};
117120

src/app/ogr/qgsnewogrconnection.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
***************************************************************************/
1717
#include <QSettings>
1818
#include <QMessageBox>
19-
#include <QInputDialog>
2019

2120
#include "qgsnewogrconnection.h"
2221
#include "qgscontexthelp.h"

0 commit comments

Comments
 (0)