PD: Correct typo in pattern parameters
This commit is contained in:
@@ -70,7 +70,7 @@ private Q_SLOTS:
|
||||
void onLength(double length);
|
||||
void onOffset(double offset);
|
||||
void onOccurrences(uint number);
|
||||
void onUpdateView(bool /*unsused*/) override;
|
||||
void onUpdateView(bool /*unused*/) override;
|
||||
|
||||
private:
|
||||
void setupParameterUI(QWidget* widget) override;
|
||||
|
||||
@@ -80,7 +80,7 @@ private Q_SLOTS:
|
||||
void onMoveDown();
|
||||
// Note: There is no Cancel button because I couldn't work out how to save the state of
|
||||
// a subFeature so as to revert the changes of an edit operation
|
||||
void onUpdateView(bool /*unsused*/) override;
|
||||
void onUpdateView(bool /*unused*/) override;
|
||||
|
||||
private:
|
||||
void setupParameterUI(QWidget* widget) override;
|
||||
|
||||
@@ -70,7 +70,7 @@ private Q_SLOTS:
|
||||
void onAngle(double angle);
|
||||
void onOffset(double offset);
|
||||
void onOccurrences(uint number);
|
||||
void onUpdateView(bool /*unsused*/) override;
|
||||
void onUpdateView(bool /*unused*/) override;
|
||||
|
||||
private:
|
||||
void setupParameterUI(QWidget* widget) override;
|
||||
|
||||
@@ -60,7 +60,8 @@ public:
|
||||
private Q_SLOTS:
|
||||
void onFactor(double factor);
|
||||
void onOccurrences(uint number);
|
||||
void onUpdateView(bool /*unsused*/) override;
|
||||
void onUpdateView(bool /*unused*/) override;
|
||||
|
||||
|
||||
private:
|
||||
void setupParameterUI(QWidget* widget) override;
|
||||
|
||||
@@ -158,7 +158,7 @@ public:
|
||||
* instance that does it already, e.g. TaskDlgMultiTransformParameters.
|
||||
* By default, transactions are enabled.
|
||||
*/
|
||||
void setEnabledTransaction(bool /*unsused*/);
|
||||
void setEnabledTransaction(bool /*unused*/);
|
||||
|
||||
/// Exit the selection mode of the associated task panel
|
||||
void exitSelectionMode();
|
||||
@@ -215,7 +215,7 @@ protected:
|
||||
void setupTransaction();
|
||||
|
||||
private Q_SLOTS:
|
||||
virtual void onUpdateView(bool /*unsused*/) = 0;
|
||||
virtual void onUpdateView(bool /*unused*/) = 0;
|
||||
|
||||
void onButtonAddFeature(bool checked);
|
||||
void onButtonRemoveFeature(bool checked);
|
||||
|
||||
Reference in New Issue
Block a user