]> git.sur5r.net Git - minitube/commitdiff
Fixed string not getting translated by removing the Playlist namespace
authorFlavio Tordini <flavio.tordini@gmail.com>
Tue, 11 Aug 2009 08:47:27 +0000 (10:47 +0200)
committerFlavio Tordini <flavio.tordini@gmail.com>
Tue, 11 Aug 2009 08:47:27 +0000 (10:47 +0200)
src/playlist/PrettyItemDelegate.cpp
src/playlist/PrettyItemDelegate.h

index fff8ebe05bbb0dfcf6b506ec92c2d946a2d96ee9..efc9e0cbe64988e9e7d35045eb1098ca61784489 100644 (file)
@@ -4,8 +4,6 @@
 #include <QFontMetricsF>
 #include <QPainter>
 
-using namespace Playlist;
-
 const qreal PrettyItemDelegate::THUMB_HEIGHT = 90.0;
 const qreal PrettyItemDelegate::THUMB_WIDTH = 120.0;
 const qreal PrettyItemDelegate::MARGIN = 0.0;
index a015364b9ddff7e0229191117658f0a8169b0a60..941f3978c530e45a159aa691c6f8ed3a216ce4aa 100644 (file)
@@ -7,42 +7,42 @@
 class QPainter;
 
 
-namespace Playlist {
 
-    class PrettyItemDelegate : public QStyledItemDelegate {
 
-        Q_OBJECT
+class PrettyItemDelegate : public QStyledItemDelegate {
 
-    public:
-        PrettyItemDelegate( QObject* parent = 0 );
-        ~PrettyItemDelegate();
+    Q_OBJECT
 
-        QSize sizeHint( const QStyleOptionViewItem&, const QModelIndex& ) const;
-        void paint( QPainter*, const QStyleOptionViewItem&, const QModelIndex& ) const;
+public:
+    PrettyItemDelegate( QObject* parent = 0 );
+    ~PrettyItemDelegate();
 
-    private:
-        void paintBody( QPainter*, const QStyleOptionViewItem&, const QModelIndex& ) const;
+    QSize sizeHint( const QStyleOptionViewItem&, const QModelIndex& ) const;
+    void paint( QPainter*, const QStyleOptionViewItem&, const QModelIndex& ) const;
 
-        QPointF centerImage( const QPixmap&, const QRectF& ) const;
+private:
+    void paintBody( QPainter*, const QStyleOptionViewItem&, const QModelIndex& ) const;
 
-        /**
+    QPointF centerImage( const QPixmap&, const QRectF& ) const;
+
+    /**
              * Paints a marker indicating the track is active
              */
-        void paintActiveOverlay( QPainter *painter, qreal x, qreal y, qreal w, qreal h ) const;
-        /**
+    void paintActiveOverlay( QPainter *painter, qreal x, qreal y, qreal w, qreal h ) const;
+    /**
           * Paints the video duration
           */
-        void drawTime(QPainter *painter, QString time, QRectF line) const;
+    void drawTime(QPainter *painter, QString time, QRectF line) const;
+
+    static const qreal THUMB_WIDTH;
+    static const qreal THUMB_HEIGHT;
+    static const qreal MARGIN;
+    static const qreal MARGINH;
+    static const qreal MARGINBODY;
+    static const qreal PADDING;
 
-        static const qreal THUMB_WIDTH;
-        static const qreal THUMB_HEIGHT;
-        static const qreal MARGIN;
-        static const qreal MARGINH;
-        static const qreal MARGINBODY;
-        static const qreal PADDING;
+};
 
-    };
-}
 
 #endif