diff --git a/src/QGCFileDialog.h b/src/QGCFileDialog.h index 2419f9eba90820e9559fa46b3438e6b57056a845..42eff4824695d2e76846da3664d585401107a90a 100644 --- a/src/QGCFileDialog.h +++ b/src/QGCFileDialog.h @@ -61,7 +61,7 @@ public: \param caption The caption displayed at the top of the dialog. \param dir The initial directory shown to the user. \param filter The filter used for selecting the file type. - \param selectedFilter **NOT IMPLEMENTED** Returns the filter that the user selected in the file dialog. + \param selectedFilter **NOT IMPLEMENTED - Set to NULL** Returns the filter that the user selected in the file dialog. \param options Set the various options that affect the look and feel of the dialog. \return The full path and filename to be opened or QString("") if none. \sa QFileDialog::getOpenFileName() @@ -79,7 +79,7 @@ public: \param caption The caption displayed at the top of the dialog. \param dir The initial directory shown to the user. \param filter The filter used for selecting the file type. - \param selectedFilter **NOT IMPLEMENTED** Returns the filter that the user selected in the file dialog. + \param selectedFilter **NOT IMPLEMENTED - Set to NULL** Returns the filter that the user selected in the file dialog. \param options Set the various options that affect the look and feel of the dialog. \return A QStringList object containing zero or more files to be opened. \sa QFileDialog::getOpenFileNames() @@ -97,7 +97,7 @@ public: \param caption The caption displayed at the top of the dialog. \param dir The initial directory shown to the user. \param filter The filter used for selecting the file type. - \param selectedFilter **NOT IMPLEMENTED** Returns the filter that the user selected in the file dialog. + \param selectedFilter **NOT IMPLEMENTED - Set to NULL** Returns the filter that the user selected in the file dialog. \param options Set the various options that affect the look and feel of the dialog. \param defaultSuffix Specifies a string that will be added to the filename if it has no suffix already. The suffix is typically used to indicate the file type (e.g. "txt" indicates a text file). \return The full path and filename to be used to save the file or QString("") if none.