]> git.sesse.net Git - vlc/commitdiff
Don't translate empty strings
authorChristophe Mutricy <xtophe@videolan.org>
Thu, 30 Aug 2007 20:34:41 +0000 (20:34 +0000)
committerChristophe Mutricy <xtophe@videolan.org>
Thu, 30 Aug 2007 20:34:41 +0000 (20:34 +0000)
modules/gui/qt4/playlist_model.cpp

index 13da20fa25060d4019cb9bc29f86ceefb45d6754..16d53cb3a4af7ba69456e35d62a5b8521fe510e3 100644 (file)
@@ -80,7 +80,7 @@ void PLItem::init( int _i_id, int _i_input_id, PLItem *parent, PLModel *m)
     } else {
         i_showflags = parentItem->i_showflags;
         //Add empty string and update() handles data appending
-        strings.append( qtr("") );
+        strings.append( "" );
     }
 }
 
@@ -90,7 +90,7 @@ void PLItem::updateview( void )
 
     if( model->i_depth == 1 )  //left window for playlist etc.
     {
-        strings.append( qtr("") );
+        strings.append( "" );
         return;
     }