Console: rename PascalCase named methods to camelCase
This commit is contained in:
@@ -854,7 +854,7 @@ UrlLabel::UrlLabel(QWidget* parent, Qt::WindowFlags f)
|
||||
, _url (QStringLiteral("http://localhost"))
|
||||
, _launchExternal(true)
|
||||
{
|
||||
setToolTip(this->_url);
|
||||
setToolTip(this->_url);
|
||||
setCursor(Qt::PointingHandCursor);
|
||||
if (qApp->styleSheet().isEmpty())
|
||||
setStyleSheet(QStringLiteral("Gui--UrlLabel {color: #0000FF;text-decoration: underline;}"));
|
||||
@@ -919,9 +919,9 @@ void StatefulLabel::setParameterGroup(const std::string& groupName)
|
||||
{
|
||||
if (_parameterGroup.isValid())
|
||||
_parameterGroup->Detach(this);
|
||||
|
||||
|
||||
// Attach to the Parametergroup so we know when it changes
|
||||
_parameterGroup = App::GetApplication().GetParameterGroupByPath(groupName.c_str());
|
||||
_parameterGroup = App::GetApplication().GetParameterGroupByPath(groupName.c_str());
|
||||
if (_parameterGroup.isValid())
|
||||
_parameterGroup->Attach(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user