code cleanup
[fapman] / rotatingbackground.h
index 9d6a05a..61ccf7b 100644 (file)
@@ -27,6 +27,8 @@ class RotatingBackground : public QWidget
     Q_OBJECT
 public:
     explicit RotatingBackground(QWidget *parent = 0);
+       virtual ~RotatingBackground();
+
        void loadWallpaper();
        void paintEvent(QPaintEvent *);
        void resizeEvent(QResizeEvent *);
@@ -35,6 +37,9 @@ public slots:
        void orientationChanged();
 
 private:
+       RotatingBackground(const RotatingBackground& old);
+       RotatingBackground operator= (const RotatingBackground& old);
+
        QPixmap iWallpaperLandscape;
        QPixmap iWallpaperPortrait;
 };