]> git.sesse.net Git - vlc/blob - modules/gui/kde/languagemenu.cpp
fixed a typo that caused the ui.rc file to be installed in PREFIX/sharevlc/
[vlc] / modules / gui / kde / languagemenu.cpp
1 #include "languagemenu.h"
2
3 KLanguageMenuAction::KLanguageMenuAction( intf_thread_t *p_intf, const QString &text, es_descriptor_t * p_es, QObject *parent) : KRadioAction( text,0,parent), p_es(p_es), p_intf(p_intf)
4 {
5     ;
6 }
7
8 void KLanguageMenuAction::setChecked( bool on )
9 {
10     if ( on != isChecked() )
11     {
12         emit toggled( on, p_es );
13         KRadioAction::setChecked( on );
14     }
15 }
16
17 KLanguageMenuAction::~KLanguageMenuAction()
18 {
19 }