remove reference to removed setColorDialogOptions method

This commit is contained in:
Denis Rouzaud 2018-04-18 13:07:42 -04:00 committed by Nyall Dawson
parent 15bf357f6a
commit 9627f733cf
2 changed files with 10 additions and 10 deletions

View File

@ -174,7 +174,7 @@ the "no color" option sets the color button's color to a totally transparent col
.. note::
The "no color" option is only shown if the color button is set to show an alpha channel in the color
dialog (see setColorDialogOptions)
dialog
%End
bool showNoColor() const;
@ -191,7 +191,7 @@ the "no color" option sets the color button's color to a totally transparent col
.. note::
The "no color" option is only shown if the color button is set to show an alpha channel in the color
dialog (see setColorDialogOptions)
dialog
%End
void setNoColorString( const QString &noColorString );
@ -207,7 +207,7 @@ Sets the string to use for the "no color" option in the button's drop-down menu.
.. note::
The "no color" option is only shown if the color button is set to show an alpha channel in the color
dialog (see setColorDialogOptions)
dialog
%End
void setShowNull( bool showNull );
@ -258,7 +258,7 @@ Returns the string used for the "no color" option in the button's drop-down menu
.. note::
The "no color" option is only shown if the color button is set to show an alpha channel in the color
dialog (see setColorDialogOptions)
dialog
%End
void setContext( const QString &context );
@ -355,7 +355,7 @@ Sets color to a totally transparent color.
.. note::
If the color button is not set to show an opacity channel in the color
dialog (see setColorDialogOptions) then the color will not be changed.
dialog then the color will not be changed.
.. seealso:: :py:func:`setToNull`
%End

View File

@ -175,7 +175,7 @@ class GUI_EXPORT QgsColorButton : public QToolButton
* \see showNoColor
* \see setNoColorString
* \note The "no color" option is only shown if the color button is set to show an alpha channel in the color
* dialog (see setColorDialogOptions)
* dialog
*/
void setShowNoColor( const bool showNoColorOption ) { mShowNoColorOption = showNoColorOption; }
@ -186,7 +186,7 @@ class GUI_EXPORT QgsColorButton : public QToolButton
* \see setShowNoColor
* \see noColorString
* \note The "no color" option is only shown if the color button is set to show an alpha channel in the color
* dialog (see setColorDialogOptions)
* dialog
*/
bool showNoColor() const { return mShowNoColorOption; }
@ -196,7 +196,7 @@ class GUI_EXPORT QgsColorButton : public QToolButton
* \see noColorString
* \see setShowNoColor
* \note The "no color" option is only shown if the color button is set to show an alpha channel in the color
* dialog (see setColorDialogOptions)
* dialog
*/
void setNoColorString( const QString &noColorString ) { mNoColorString = noColorString; }
@ -231,7 +231,7 @@ class GUI_EXPORT QgsColorButton : public QToolButton
* \see setNoColorString
* \see showNoColor
* \note The "no color" option is only shown if the color button is set to show an alpha channel in the color
* dialog (see setColorDialogOptions)
* dialog
*/
QString noColorString() const { return mNoColorString; }
@ -312,7 +312,7 @@ class GUI_EXPORT QgsColorButton : public QToolButton
/**
* Sets color to a totally transparent color.
* \note If the color button is not set to show an opacity channel in the color
* dialog (see setColorDialogOptions) then the color will not be changed.
* dialog then the color will not be changed.
* \see setToNull()
*/
void setToNoColor();