]> git.sesse.net Git - vlc/commitdiff
qt4: make title the first PL column
authorJakob Leben <jleben@videolan.org>
Fri, 4 Sep 2009 00:52:36 +0000 (02:52 +0200)
committerJakob Leben <jleben@videolan.org>
Sat, 5 Sep 2009 15:50:26 +0000 (17:50 +0200)
So that tree branches appear on it.

modules/gui/qt4/components/playlist/sorting.h

index 860febd8412b1f558b528ff3c4941b05d0649d38..ca2f8f241f7390a1550540e7ed641d77776fe56e 100644 (file)
 /* You can use these numbers with | and & to determine what you want to show */
 enum
 {
-    COLUMN_NUMBER       = 0x0001,
-    COLUMN_TITLE        = 0x0002,
-    COLUMN_DURATION     = 0x0004,
-    COLUMN_ARTIST       = 0x0008,
-    COLUMN_GENRE        = 0x0010,
-    COLUMN_ALBUM        = 0x0020,
-    COLUMN_TRACK_NUMBER = 0x0040,
-    COLUMN_DESCRIPTION  = 0x0080,
-    COLUMN_URI          = 0x0100,
+    COLUMN_TITLE          = 0x0001,
+    COLUMN_DURATION       = 0x0002,
+    COLUMN_ARTIST         = 0x0004,
+    COLUMN_GENRE          = 0x0008,
+    COLUMN_ALBUM          = 0x0010,
+    COLUMN_TRACK_NUMBER   = 0x0020,
+    COLUMN_DESCRIPTION    = 0x0040,
+    COLUMN_URI            = 0x0080,
+    COLUMN_NUMBER         = 0x0100,
 
     /* Add new entries here and update the COLUMN_END value*/