]> git.sur5r.net Git - minitube/blobdiff - src/aboutview.h
Update upstream source from tag 'upstream/3.8'
[minitube] / src / aboutview.h
index 1f2a0fedbf35ab5998d78622ea7397880d976528..f10773d0d0fc9a8f6eb171803646f39d90051768 100644 (file)
@@ -26,27 +26,15 @@ $END_LICENSE */
 #include "constants.h"
 #include "view.h"
 
-class ClickableLabel;
-
 class AboutView : public View {
     Q_OBJECT
 
 public:
     AboutView(QWidget *parent);
     void appear();
-    const QString &getTitle() {
-        static const QString s = tr("About");
-        return s;
-    }
-
-protected:
-    void paintEvent(QPaintEvent *e);
-
-private slots:
-    void screenChanged();
+    QString getTitle() { return tr("About"); }
 
 private:
-    ClickableLabel *logo;
     QPushButton *closeButton;
 };
 #endif