refs #356 toPixmap is public in the base class, so it should be public in the derived class.

This commit is contained in:
Mathew Sutcliffe
2015-03-12 00:07:28 +00:00
parent f23b3da1ae
commit df1a9d7b9e

View File

@@ -44,13 +44,13 @@ namespace BlackMisc
//! With Pixmap?
bool isNull() const;
//! \copydoc CValueObject::toPixmap
virtual QPixmap toPixmap() const override;
protected:
//! \copydoc CValueObject::convertToQString
virtual QString convertToQString(bool i18n = false) const override;
//! \copydoc CValueObject::toPixmap
virtual QPixmap toPixmap() const override;
private:
BLACK_ENABLE_TUPLE_CONVERSION(BlackMisc::CPixmap)