mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Mark some API as non-stable, hide from Python bindings
This commit is contained in:
parent
e73f74063e
commit
8f90791bef
@ -253,19 +253,7 @@ Set the pivot point
|
||||
.. versionadded:: 3.4
|
||||
%End
|
||||
|
||||
QStringList listForCboPrettyBreaks() const;
|
||||
%Docstring
|
||||
Returns the list of breaks used in the prettybreaks mode. Needed to recover this list in saved configuration, or when property window in closed and reopened
|
||||
|
||||
.. versionadded:: 3.4
|
||||
%End
|
||||
|
||||
void setListForCboPrettyBreaks( QStringList listForCboPrettyBreaks );
|
||||
%Docstring
|
||||
Set the list of breaks used in the prettybreaks mode, which is needed to recover this list in saved configuration, or when property window is closed and reopened
|
||||
|
||||
.. versionadded:: 3.4
|
||||
%End
|
||||
|
||||
bool astride() const;
|
||||
%Docstring
|
||||
|
@ -248,15 +248,17 @@ class CORE_EXPORT QgsGraduatedSymbolRenderer : public QgsFeatureRenderer
|
||||
|
||||
/**
|
||||
* Returns the list of breaks used in the prettybreaks mode. Needed to recover this list in saved configuration, or when property window in closed and reopened
|
||||
* \note Not available in Python bindings, not stable API
|
||||
* \since QGIS 3.4
|
||||
*/
|
||||
QStringList listForCboPrettyBreaks() const { return mListForCboPrettyBreaks; }
|
||||
QStringList listForCboPrettyBreaks() const { return mListForCboPrettyBreaks; } SIP_SKIP
|
||||
|
||||
/**
|
||||
* Set the list of breaks used in the prettybreaks mode, which is needed to recover this list in saved configuration, or when property window is closed and reopened
|
||||
* \note Not available in Python bindings, not stable API
|
||||
* \since QGIS 3.4
|
||||
*/
|
||||
void setListForCboPrettyBreaks( QStringList listForCboPrettyBreaks ) { mListForCboPrettyBreaks = listForCboPrettyBreaks; }
|
||||
void setListForCboPrettyBreaks( const QStringList &listForCboPrettyBreaks ) { mListForCboPrettyBreaks = listForCboPrettyBreaks; } SIP_SKIP
|
||||
|
||||
/**
|
||||
* Returns if we want to have a central class astride the pivot value
|
||||
|
Loading…
x
Reference in New Issue
Block a user