remove unused Q_D macros

This commit is contained in:
laserpants 2016-06-18 11:56:45 +03:00
parent 8d25f4036a
commit de281b9922
1 changed files with 0 additions and 4 deletions

View File

@ -93,8 +93,6 @@ QColor Snackbar::textColor() const
void Snackbar::setFontSize(qreal size)
{
Q_D(Snackbar);
QFont f(font());
f.setPointSizeF(size);
setFont(f);
@ -104,8 +102,6 @@ void Snackbar::setFontSize(qreal size)
qreal Snackbar::fontSize() const
{
Q_D(const Snackbar);
return font().pointSizeF();
}