@@ -61,23 +61,23 @@ class GUI_EXPORT QgsRasterLayerSaveAsDialog: public QDialog, private Ui::QgsRast
61
61
void on_mCurrentExtentButton_clicked ();
62
62
void on_mOriginalExtentButton_clicked ();
63
63
void on_mFormatComboBox_currentIndexChanged ( const QString& text );
64
- void on_mResolutionRadioButton_toggled ( bool checked ) { toggleResolutionSize (); }
64
+ void on_mResolutionRadioButton_toggled ( bool ) { toggleResolutionSize (); }
65
65
void on_mOriginalResolutionPushButton_clicked () { setOriginalResolution (); }
66
- void on_mXResolutionLineEdit_textEdited ( const QString & text ) { mResolutionState = UserResolution; recalcSize (); }
67
- void on_mYResolutionLineEdit_textEdited ( const QString & text ) { mResolutionState = UserResolution; recalcSize (); }
66
+ void on_mXResolutionLineEdit_textEdited ( const QString & ) { mResolutionState = UserResolution; recalcSize (); }
67
+ void on_mYResolutionLineEdit_textEdited ( const QString & ) { mResolutionState = UserResolution; recalcSize (); }
68
68
69
69
void on_mOriginalSizePushButton_clicked () { setOriginalSize (); }
70
- void on_mColumnsLineEdit_textEdited ( const QString & text ) { mResolutionState = UserResolution; recalcResolution (); }
71
- void on_mRowsLineEdit_textEdited ( const QString & text ) { mResolutionState = UserResolution; recalcResolution (); }
70
+ void on_mColumnsLineEdit_textEdited ( const QString & ) { mResolutionState = UserResolution; recalcResolution (); }
71
+ void on_mRowsLineEdit_textEdited ( const QString & ) { mResolutionState = UserResolution; recalcResolution (); }
72
72
73
- void on_mXMinLineEdit_textEdited ( const QString & text ) { mExtentState = UserExtent; extentChanged (); }
74
- void on_mXMaxLineEdit_textEdited ( const QString & text ) { mExtentState = UserExtent; extentChanged (); }
75
- void on_mYMinLineEdit_textEdited ( const QString & text ) { mExtentState = UserExtent; extentChanged (); }
76
- void on_mYMaxLineEdit_textEdited ( const QString & text ) { mExtentState = UserExtent; extentChanged (); }
73
+ void on_mXMinLineEdit_textEdited ( const QString & ) { mExtentState = UserExtent; extentChanged (); }
74
+ void on_mXMaxLineEdit_textEdited ( const QString & ) { mExtentState = UserExtent; extentChanged (); }
75
+ void on_mYMinLineEdit_textEdited ( const QString & ) { mExtentState = UserExtent; extentChanged (); }
76
+ void on_mYMaxLineEdit_textEdited ( const QString & ) { mExtentState = UserExtent; extentChanged (); }
77
77
78
78
void on_mChangeCrsPushButton_clicked ();
79
79
80
- void on_mCrsComboBox_currentIndexChanged ( int index ) { crsChanged (); }
80
+ void on_mCrsComboBox_currentIndexChanged ( int ) { crsChanged (); }
81
81
82
82
private:
83
83
QgsRasterDataProvider* mDataProvider ;
0 commit comments