[vlc-commits] qt: playlist_model.cpp: Remove tabs

Hugo Beauzée-Luyssen git at videolan.org
Mon Jan 23 18:08:05 CET 2017


vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Mon Jan 23 17:30:02 2017 +0100| [9b2fd84fea490591502a13c30dcc759761fa96e5] | committer: Hugo Beauzée-Luyssen

qt: playlist_model.cpp: Remove tabs

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9b2fd84fea490591502a13c30dcc759761fa96e5
---

 modules/gui/qt/components/playlist/playlist_model.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/gui/qt/components/playlist/playlist_model.cpp b/modules/gui/qt/components/playlist/playlist_model.cpp
index d8bf081..9315889 100644
--- a/modules/gui/qt/components/playlist/playlist_model.cpp
+++ b/modules/gui/qt/components/playlist/playlist_model.cpp
@@ -1021,7 +1021,7 @@ bool PLModel::isSupportedAction( actions action, const QModelIndex &index ) cons
     {
     case ACTION_ADDTOPLAYLIST:
         /* Only if we are not already in Current Playing */
-		return getPLRootType() != ROOTTYPE_CURRENT_PLAYING;
+        return getPLRootType() != ROOTTYPE_CURRENT_PLAYING;
     case ACTION_SORT:
         return rowCount();
     case ACTION_PLAY:
@@ -1040,7 +1040,7 @@ bool PLModel::isSupportedAction( actions action, const QModelIndex &index ) cons
     }
     case ACTION_PAUSE:
     {
-		if( !isCurrent( index ) )
+        if( !isCurrent( index ) )
             return false;
 
         vlc_playlist_locker pl_lock ( THEPL );



More information about the vlc-commits mailing list