Skip to content

Commit b76acbe

Browse files
committedMay 17, 2018
More docstring fixes
1 parent 74dec50 commit b76acbe

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed
 

‎python/gui/auto_generated/attributetable/qgsattributetablemodel.sip.in

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,12 +193,10 @@ Specify -1 as column to invalidate the cache
193193

194194
void prefetchSortData( const QString &expression, unsigned long cacheIndex = 0 );
195195
%Docstring
196-
Prefetches the entire data for one expression. Based on this cached information
196+
Prefetches the entire data for an ``expression``. Based on this cached information
197197
the sorting can later be done in a performant way. A ``cacheIndex`` can be specified
198198
if multiple caches should be filled. In this case, the caches will be available
199199
as ``QgsAttributeTableModel.SortRole + cacheIndex``.
200-
201-
:param expression: The expression to cache
202200
%End
203201

204202
QString sortCacheExpression( unsigned long cacheIndex = 0 ) const;

‎src/gui/attributetable/qgsattributetablemodel.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,12 +199,10 @@ class GUI_EXPORT QgsAttributeTableModel: public QAbstractTableModel
199199
void prefetchColumnData( int column );
200200

201201
/**
202-
* Prefetches the entire data for one expression. Based on this cached information
202+
* Prefetches the entire data for an \a expression. Based on this cached information
203203
* the sorting can later be done in a performant way. A \a cacheIndex can be specified
204204
* if multiple caches should be filled. In this case, the caches will be available
205205
* as ``QgsAttributeTableModel::SortRole + cacheIndex``.
206-
*
207-
* \param expression The expression to cache
208206
*/
209207
void prefetchSortData( const QString &expression, unsigned long cacheIndex = 0 );
210208

0 commit comments

Comments
 (0)
Please sign in to comment.