update version

This commit is contained in:
signedav 2025-06-12 15:32:42 +02:00
parent 3c214d189e
commit 92c3d1a2c9
4 changed files with 6 additions and 7 deletions

View File

@ -35,7 +35,7 @@ Returns the setting path of the derived source select
:return: setting path :return: setting path
.. versionadded:: 3.40 .. versionadded:: 3.44
%End %End
protected: protected:
@ -54,7 +54,7 @@ Returns the proxy model used to filter the results
%Docstring %Docstring
Stores the settings made in the gui Stores the settings made in the gui
.. versionadded:: 3.40 .. versionadded:: 3.44
%End %End
protected slots: protected slots:

View File

@ -35,7 +35,7 @@ Returns the setting path of the derived source select
:return: setting path :return: setting path
.. versionadded:: 3.40 .. versionadded:: 3.44
%End %End
protected: protected:
@ -54,7 +54,7 @@ Returns the proxy model used to filter the results
%Docstring %Docstring
Stores the settings made in the gui Stores the settings made in the gui
.. versionadded:: 3.40 .. versionadded:: 3.44
%End %End
protected slots: protected slots:

View File

@ -143,7 +143,6 @@ void QgsAbstractDbSourceSelect::storeSettings()
{ {
if ( mSearchColumnActions.at( i )->isChecked() ) if ( mSearchColumnActions.at( i )->isChecked() )
{ {
qDebug() << "store storedSearchColumn is " << i;
settingSearchColumn->setValue( i, { settingPath() } ); settingSearchColumn->setValue( i, { settingPath() } );
break; break;
} }

View File

@ -52,7 +52,7 @@ class GUI_EXPORT QgsAbstractDbSourceSelect : public QgsAbstractDataSourceWidget,
* *
* \returns setting path * \returns setting path
* *
* \since QGIS 3.40 * \since QGIS 3.44
*/ */
virtual QString settingPath() const { return QString(); } virtual QString settingPath() const { return QString(); }
@ -68,7 +68,7 @@ class GUI_EXPORT QgsAbstractDbSourceSelect : public QgsAbstractDataSourceWidget,
/** /**
* Stores the settings made in the gui * Stores the settings made in the gui
* *
* \since QGIS 3.40 * \since QGIS 3.44
*/ */
void storeSettings(); void storeSettings();