Browse Source

Fix parameter name in ImageSwitch callback method signature (#92)

pull/93/head
Christopher Arndt Filipe Coelho <falktx@falktx.com> 5 years ago
parent
commit
a4fe3ac328
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      dgl/ImageWidgets.hpp

+ 1
- 1
dgl/ImageWidgets.hpp View File

@@ -240,7 +240,7 @@ public:
{
public:
virtual ~Callback() {}
virtual void imageSwitchClicked(ImageSwitch* imageButton, bool down) = 0;
virtual void imageSwitchClicked(ImageSwitch* imageSwitch, bool down) = 0;
};

explicit ImageSwitch(Window& parent, const Image& imageNormal, const Image& imageDown) noexcept;


Loading…
Cancel
Save