]> git.sur5r.net Git - minitube/blobdiff - src/AboutView.h
Imported Debian patch 1.6-1
[minitube] / src / AboutView.h
index ba5fb7f87cf24265f6c1f778d4002216a210fc02..9d6a443258490765e6dff2d3532c6a954e97824b 100644 (file)
@@ -3,7 +3,7 @@
 
 #include <QtGui>
 #include "View.h"
-#include "Constants.h"
+#include "constants.h"
 
 class AboutView : public QWidget, public View {
 
@@ -18,9 +18,12 @@ public:
         metadata.insert("title", tr("About"));
         metadata.insert("description",
                         tr("What you always wanted to know about %1 and never dared to ask")
-                        .arg(Constants::APP_NAME));
+                        .arg(Constants::NAME));
         return metadata;
     }
 
+protected:
+    void paintEvent(QPaintEvent *);
+
 };
 #endif