Skip to content

Commit 33071f4

Browse files
committedJul 24, 2017
fix doxymentation
1 parent fcc0d7d commit 33071f4

File tree

7 files changed

+10
-3
lines changed

7 files changed

+10
-3
lines changed
 

‎python/core/qgsdatumtransformstore.sip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class QgsDatumTransformStore
4141
Will return transform from layer's CRS to current destination CRS.
4242
:return: transformation associated with layer, or an invalid QgsCoordinateTransform
4343
if no transform is associated with the layer
44+
\param layer the associated layer
4445
\param srcAuthId source CRS (defaults to layer crs)
4546
\param dstAuthId destination CRS (defaults to store's crs)
4647
:rtype: QgsCoordinateTransform

‎python/core/qgsuserprofilemanager.sip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ class QgsUserProfileManager : QObject
5353
Returns a new QgsUserProfile. Ownership transferred to caller.
5454
\param defaultProfile The profile name to find. Empty profile name will return "default" for the name.
5555
\param createNew Create the profile folder if it doesn't exist.
56+
\param initSettings if the settings should be initialized
5657
:return: The user profile
5758
:rtype: QgsUserProfile
5859
%End

‎python/gui/qgsattributeform.sip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ class QgsAttributeForm : QWidget
173173

174174
\param field The field to change
175175
\param value The new value
176+
\param hintText A hint text for non existent joined features
176177
%End
177178

178179
void setFeature( const QgsFeature &feature );

‎src/core/qgsdatumtransformstore.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ class CORE_EXPORT QgsDatumTransformStore
4747
* Will return transform from layer's CRS to current destination CRS.
4848
* \returns transformation associated with layer, or an invalid QgsCoordinateTransform
4949
* if no transform is associated with the layer
50+
* \param layer the associated layer
5051
* \param srcAuthId source CRS (defaults to layer crs)
5152
* \param dstAuthId destination CRS (defaults to store's crs)
5253
*/

‎src/core/qgsuserprofilemanager.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class CORE_EXPORT QgsUserProfileManager : public QObject
6363
* \note Returns a new QgsUserProfile. Ownership transferred to caller.
6464
* \param defaultProfile The profile name to find. Empty profile name will return "default" for the name.
6565
* \param createNew Create the profile folder if it doesn't exist.
66+
* \param initSettings if the settings should be initialized
6667
* \return The user profile
6768
*/
6869
QgsUserProfile *getProfile( const QString &defaultProfile = "default", bool createNew = true, bool initSettings = true ) SIP_FACTORY;

‎src/gui/qgsattributeform.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ class GUI_EXPORT QgsAttributeForm : public QWidget
208208
*
209209
* \param field The field to change
210210
* \param value The new value
211+
* \param hintText A hint text for non existent joined features
211212
*/
212213
void changeAttribute( const QString &field, const QVariant &value, const QString &hintText = QString() );
213214

‎src/gui/qgsdatasourcemanagerdialog.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,16 @@ class GUI_EXPORT QgsDataSourceManagerDialog : public QgsOptionsDialogBase, priva
4848
public:
4949

5050
/** QgsDataSourceManagerDialog constructor
51-
* @param parent the object
52-
* @param fl window flags
51+
* \param parent the object
52+
* \param canvas a pointer to the map canvas
53+
* \param fl window flags
5354
*/
5455
explicit QgsDataSourceManagerDialog( QWidget *parent = nullptr, QgsMapCanvas *canvas = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags );
5556
~QgsDataSourceManagerDialog();
5657

5758
/**
5859
* @brief openPage open a given page in the dialog
59-
* @param pageName the page name, usually the provider name or "browser" (for the browser panel)
60+
* \param pageName the page name, usually the provider name or "browser" (for the browser panel)
6061
* or "ogr" (vector layers) or "raster" (raster layers)
6162
*/
6263
void openPage( QString pageName );

0 commit comments

Comments
 (0)
Please sign in to comment.