Skip to content

Commit

Permalink
gui: remove unused PlatformStyle::TextColorIcon
Browse files Browse the repository at this point in the history
This is unused after bitcoin#16612.
  • Loading branch information
fanquake authored and Michael Polzer committed Aug 30, 2019
1 parent 3d30400 commit c7c8acd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
5 changes: 0 additions & 5 deletions src/qt/platformstyle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,6 @@ QIcon PlatformStyle::SingleColorIcon(const QIcon& icon) const
return ColorizeIcon(icon, SingleColor());
}

QIcon PlatformStyle::TextColorIcon(const QString& filename) const
{
return ColorizeIcon(filename, TextColor());
}

QIcon PlatformStyle::TextColorIcon(const QIcon& icon) const
{
return ColorizeIcon(icon, TextColor());
Expand Down
3 changes: 0 additions & 3 deletions src/qt/platformstyle.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ class PlatformStyle
/** Colorize an icon (given object) with the icon color */
QIcon SingleColorIcon(const QIcon& icon) const;

/** Colorize an icon (given filename) with the text color */
QIcon TextColorIcon(const QString& filename) const;

/** Colorize an icon (given object) with the text color */
QIcon TextColorIcon(const QIcon& icon) const;

Expand Down

0 comments on commit c7c8acd

Please sign in to comment.