connect( lineEdit(), SIGNAL( textChanged( const QString& ) ),
this, SLOT( onTextChanged( const QString& ) ) );
+
+ connect( lineEdit(), SIGNAL( textChanged( const QString& )),
+ this, SIGNAL( textChanged( const QString& ) ) );
}
/*!
virtual void setText(const QString& );
+signals:
+ void textChanged( const QString& );
+
protected:
State isValid( const QString&, double& ) const;
bool findVariable( const QString&, double& ) const;
-protected:
+ protected:
virtual void showEvent( QShowEvent* );
protected slots:
connect( lineEdit(), SIGNAL( textChanged( const QString& ) ),
this, SLOT( onTextChanged( const QString& ) ) );
+
+ connect( lineEdit(), SIGNAL( textChanged( const QString& )),
+ this, SIGNAL( textChanged( const QString& ) ) );
}
/*!
virtual void setText(const QString& );
+signals:
+ void textChanged( const QString& );
+
protected:
State isValid( const QString&, int& ) const;