mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 01:05:34 +08:00
refs #413 Make all value class methods non-virtual.
toCVariant() and convertFromCVariant() are now deprecated, use CVariant::from() and CVariant::to() instead.
This commit is contained in:
@@ -46,10 +46,10 @@ namespace BlackMisc
|
||||
bool isNull() const;
|
||||
|
||||
//! \copydoc CValueObject::toPixmap
|
||||
virtual QPixmap toPixmap() const override;
|
||||
QPixmap toPixmap() const;
|
||||
|
||||
//! \copydoc CValueObject::convertToQString
|
||||
virtual QString convertToQString(bool i18n = false) const override;
|
||||
QString convertToQString(bool i18n = false) const;
|
||||
|
||||
private:
|
||||
BLACK_ENABLE_TUPLE_CONVERSION(BlackMisc::CPixmap)
|
||||
|
||||
Reference in New Issue
Block a user