mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
Merge pull request #600 from GullCode/ui_qrcode-warning-fix
Fix for weffc++
This commit is contained in:
commit
4c98cf16a1
@ -43,8 +43,25 @@ QRCodeImage::QRCodeImage(
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QRCodeImage::~QRCodeImage( )
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
QRCodeImage::QRCodeImage(const QRCodeImage&Image) : Widget { }
|
||||||
|
{
|
||||||
|
(void)Image;
|
||||||
|
}
|
||||||
|
|
||||||
|
QRCodeImage & QRCodeImage::operator=(const QRCodeImage&Image)
|
||||||
|
{
|
||||||
|
(void)Image;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
void QRCodeImage::paint(Painter& painter) {
|
void QRCodeImage::paint(Painter& painter) {
|
||||||
|
|
||||||
|
(void)painter ;
|
||||||
|
|
||||||
// The structure to manage the QR code
|
// The structure to manage the QR code
|
||||||
QRCode qrcode;
|
QRCode qrcode;
|
||||||
|
@ -40,10 +40,13 @@ public:
|
|||||||
qr_text_ = qr_text;
|
qr_text_ = qr_text;
|
||||||
}
|
}
|
||||||
void paint(Painter& painter) override;
|
void paint(Painter& painter) override;
|
||||||
|
// for -weffc++ to be killed
|
||||||
|
~QRCodeImage(); // destructor
|
||||||
|
QRCodeImage(const QRCodeImage&Image);
|
||||||
|
QRCodeImage & operator=(const QRCodeImage &Image); // assignment
|
||||||
|
|
||||||
private:
|
private:
|
||||||
const char * qr_text_ ;
|
const char * qr_text_ = NULL ;
|
||||||
};
|
};
|
||||||
|
|
||||||
class QRCodeView : public View {
|
class QRCodeView : public View {
|
||||||
|
Loading…
Reference in New Issue
Block a user