Commit ac8d5396 authored by Christophe Mutricy's avatar Christophe Mutricy

Compile fix

parent 397558d8
......@@ -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 );
......
......@@ -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() );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment