Remove redundant function.

This commit is contained in:
sphrose
2021-05-13 10:56:39 +01:00
parent b08643d9da
commit 36a79aca8a
2 changed files with 1 additions and 7 deletions
@@ -126,7 +126,7 @@ namespace AzToolsFramework
{
QStylePainter p(this);
if (IsReorderableRow())
if (CanBeReordered())
{
const QPen linePen(QColor(0x3B3E3F));
p.setPen(linePen);
@@ -1332,11 +1332,6 @@ namespace AzToolsFramework
return canBeTopLevel(this);
}
bool PropertyRowWidget::IsReorderableRow() const
{
return CanBeReordered();
}
bool PropertyRowWidget::GetAppendDefaultLabelToName()
{
return false;
@@ -83,7 +83,6 @@ namespace AzToolsFramework
PropertyRowWidget* GetParentRow() const { return m_parentRow; }
int GetLevel() const;
bool IsTopLevel() const;
bool IsReorderableRow() const;
// Remove the default label and append the text to the name label.
bool GetAppendDefaultLabelToName();