]> git.sesse.net Git - vlc/commitdiff
Compile fix
authorChristophe Mutricy <xtophe@videolan.org>
Sat, 2 Jun 2007 11:42:19 +0000 (11:42 +0000)
committerChristophe Mutricy <xtophe@videolan.org>
Sat, 2 Jun 2007 11:42:19 +0000 (11:42 +0000)
modules/gui/qt4/components/infopanels.cpp
modules/gui/qt4/menus.cpp

index 7c231f65c4316a3b7ab2ff323c00b8558a32ac0a..7e9f237f834c7002d7323401858e0eb84b64b59c 100644 (file)
@@ -48,8 +48,8 @@ MetaPanel::MetaPanel( QWidget *parent, intf_thread_t *_p_intf ) :
     widget = new QLabel( "" );                                  \
     l->addWidget( widget, line, 1 );                            \
     line++;            }
-    ADD_META( qtr( "Name" ), name_text );
-    ADD_META( qtr( "URI" ), uri_text );
+    ADD_META( "Name", name_text );
+    ADD_META( "URI", uri_text );
     ADD_META( VLC_META_ARTIST, artist_text );
     ADD_META( VLC_META_GENRE, genre_text );
     ADD_META( VLC_META_COPYRIGHT, copyright_text );
index 8db41cceb13b10bafc10ef9b26b9e53ed16de91b..03e8015b93e8335f0adc516d27542e77622b6c1c 100644 (file)
@@ -281,7 +281,7 @@ QMenu *QVLCMenu::InterfacesMenu( intf_thread_t *p_intf, QMenu *current )
     {
         menu->addSeparator();
         menu->addAction( qtr("Switch to skins"), THEDP, SLOT(switchToSkins()),
-                "Ctrl+Z" );
+                QString("Ctrl+Z") );
     }
 
     CONNECT( menu, aboutToShow(), THEDP->menusUpdateMapper, map() );