Skip to content

Commit

Permalink
fix sip coverage test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Dec 15, 2015
1 parent 84d2e95 commit 8a40dda
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/gui/qgsprojectionselector.h
Expand Up @@ -100,9 +100,7 @@ class GUI_EXPORT QgsProjectionSelector : public QWidget, private Ui::QgsProjecti
*/
void setOgcWmsCrsFilter( const QSet<QString>& crsFilter );
void on_lstCoordinateSystems_currentItemChanged( QTreeWidgetItem *current, QTreeWidgetItem *prev );
void on_lstCoordinateSystems_itemDoubleClicked( QTreeWidgetItem *current, int column );
void on_lstRecent_currentItemChanged( QTreeWidgetItem *current, QTreeWidgetItem *prev );
void on_lstRecent_itemDoubleClicked( QTreeWidgetItem *current, int column );
void on_cbxHideDeprecated_stateChanged();
void on_leSearch_textChanged( const QString & );

Expand Down Expand Up @@ -194,9 +192,13 @@ class GUI_EXPORT QgsProjectionSelector : public QWidget, private Ui::QgsProjecti
//! Most recently used projections (trimmed at 25 entries)
QStringList mRecentProjections;

//! hide deprecated CRSes
//! Hide deprecated CRSes
void hideDeprecated( QTreeWidgetItem *item );

//! Apply projection on double click
void on_lstCoordinateSystems_itemDoubleClicked( QTreeWidgetItem *current, int column );
void on_lstRecent_itemDoubleClicked( QTreeWidgetItem *current, int column );

private slots:
//! get list of authorities
QStringList authorities();
Expand Down

0 comments on commit 8a40dda

Please sign in to comment.