Commit 8855ec28 authored by Francois Cartegnie's avatar Francois Cartegnie Committed by Jean-Baptiste Kempf

Drop trailing semicolons

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 93c4f0f8
......@@ -64,7 +64,7 @@ Q_DECLARE_METATYPE( PrefsItemData* );
class PrefsTree : public QTreeWidget
{
Q_OBJECT;
Q_OBJECT
public:
PrefsTree( intf_thread_t *, QWidget * );
virtual ~PrefsTree();
......
......@@ -52,7 +52,7 @@ class CoverArtLabel;
class MetaPanel: public QWidget
{
Q_OBJECT;
Q_OBJECT
public:
MetaPanel( QWidget *, struct intf_thread_t * );
void saveMeta();
......@@ -95,7 +95,7 @@ signals:
class ExtraMetaPanel: public QWidget
{
Q_OBJECT;
Q_OBJECT
public:
ExtraMetaPanel( QWidget *, struct intf_thread_t * );
private:
......@@ -108,7 +108,7 @@ public slots:
class InputStatsPanel: public QWidget
{
Q_OBJECT;
Q_OBJECT
public:
InputStatsPanel( QWidget *, struct intf_thread_t * );
private:
......@@ -146,7 +146,7 @@ public slots:
class InfoPanel: public QWidget
{
Q_OBJECT;
Q_OBJECT
public:
InfoPanel( QWidget *, struct intf_thread_t * );
private:
......
......@@ -65,7 +65,7 @@ class QStringListModel;
class OpenPanel: public QWidget
{
Q_OBJECT;
Q_OBJECT
public:
OpenPanel( QWidget *p, intf_thread_t *_p_intf ) : QWidget( p )
{
......@@ -84,7 +84,7 @@ signals:
class FileOpenBox: public QFileDialog
{
Q_OBJECT;
Q_OBJECT
public:
FileOpenBox( QWidget *parent, const QString &caption,
const QString &directory, const QString &filter ):
......@@ -97,7 +97,7 @@ public slots:
class FileOpenPanel: public OpenPanel
{
Q_OBJECT;
Q_OBJECT
public:
FileOpenPanel( QWidget *, intf_thread_t * );
virtual ~FileOpenPanel();
......@@ -130,7 +130,7 @@ private slots:
class NetOpenPanel: public OpenPanel
{
Q_OBJECT;
Q_OBJECT
public:
NetOpenPanel( QWidget *, intf_thread_t * );
virtual ~NetOpenPanel();
......@@ -146,7 +146,7 @@ private slots:
class DiscOpenPanel: public OpenPanel
{
Q_OBJECT;
Q_OBJECT
public:
DiscOpenPanel( QWidget *, intf_thread_t * );
virtual ~DiscOpenPanel();
......@@ -167,7 +167,7 @@ private slots:
class CaptureOpenPanel: public OpenPanel
{
Q_OBJECT;
Q_OBJECT
public:
CaptureOpenPanel( QWidget *, intf_thread_t * );
virtual ~CaptureOpenPanel();
......
......@@ -179,7 +179,7 @@ private slots:
class PlMimeData : public QMimeData
{
Q_OBJECT;
Q_OBJECT
public:
PlMimeData();
......
......@@ -83,7 +83,7 @@ private:
class PLSelItem : public QWidget
{
Q_OBJECT;
Q_OBJECT
public:
PLSelItem( QTreeWidgetItem*, const QString& );
void setText( const QString& );
......@@ -110,7 +110,7 @@ Q_DECLARE_METATYPE( playlist_item_t *);
Q_DECLARE_METATYPE( input_item_t *);
class PLSelector: public QTreeWidget
{
Q_OBJECT;
Q_OBJECT
public:
PLSelector( QWidget *p, intf_thread_t *_p_intf );
virtual ~PLSelector();
......
......@@ -132,7 +132,7 @@ private:
class LocationBar : public QWidget
{
Q_OBJECT;
Q_OBJECT
public:
LocationBar( PLModel * );
void setIndex( const QModelIndex & );
......
......@@ -303,7 +303,7 @@ private:
class FileConfigControl : public VStringConfigControl
{
Q_OBJECT;
Q_OBJECT
public:
FileConfigControl( vlc_object_t *, module_config_t *, QWidget *,
QGridLayout *, int& );
......@@ -324,7 +324,7 @@ protected:
class DirectoryConfigControl : public FileConfigControl
{
Q_OBJECT;
Q_OBJECT
public:
DirectoryConfigControl( vlc_object_t *, module_config_t *, QWidget *,
QGridLayout *, int& );
......@@ -337,7 +337,7 @@ public slots:
class FontConfigControl : public VStringConfigControl
{
Q_OBJECT;
Q_OBJECT
public:
FontConfigControl( vlc_object_t *, module_config_t *, QWidget *,
QGridLayout *, int&);
......@@ -374,7 +374,7 @@ struct checkBoxListItem {
class ModuleListConfigControl : public VStringConfigControl
{
Q_OBJECT;
Q_OBJECT
friend class ConfigControl;
public:
ModuleListConfigControl( vlc_object_t *, module_config_t *, QWidget *,
......@@ -396,7 +396,7 @@ private:
class StringListConfigControl : public VStringConfigControl
{
Q_OBJECT;
Q_OBJECT
public:
StringListConfigControl( vlc_object_t *, module_config_t *, QWidget *,
bool, QGridLayout*, int& );
......@@ -444,7 +444,7 @@ private slot:
**********************************************************************/
class KeyShortcutEdit: public QLineEdit
{
Q_OBJECT;
Q_OBJECT
public:
void setValue( int _value ){ value = _value; }
int getValue() const { return value; }
......@@ -464,7 +464,7 @@ signals:
class SearchLineEdit;
class KeySelectorControl : public ConfigControl
{
Q_OBJECT;
Q_OBJECT
public:
KeySelectorControl( vlc_object_t *, module_config_t *, QWidget *,
QGridLayout*, int& );
......
......@@ -93,7 +93,7 @@ class QTreeWidgetItem;
class SPrefsCatList : public QWidget
{
Q_OBJECT;
Q_OBJECT
public:
SPrefsCatList( intf_thread_t *, QWidget *, bool );
virtual ~SPrefsCatList() {};
......
......@@ -46,7 +46,7 @@ class SoutInputBox : public QGroupBox
class VirtualDestBox : public QWidget
{
Q_OBJECT;
Q_OBJECT
public:
VirtualDestBox( QWidget *_parent = NULL ) : QWidget( _parent ){}
virtual QString getMRL( const QString& ) = 0;
......@@ -58,7 +58,7 @@ class VirtualDestBox : public QWidget
class FileDestBox: public VirtualDestBox
{
Q_OBJECT;
Q_OBJECT
public:
FileDestBox( QWidget *_parent = NULL );
virtual QString getMRL( const QString& );
......@@ -70,7 +70,7 @@ class FileDestBox: public VirtualDestBox
class HTTPDestBox: public VirtualDestBox
{
Q_OBJECT;
Q_OBJECT
public:
HTTPDestBox( QWidget *_parent = NULL );
virtual QString getMRL( const QString& );
......@@ -81,7 +81,7 @@ class HTTPDestBox: public VirtualDestBox
class MMSHDestBox: public VirtualDestBox
{
Q_OBJECT;
Q_OBJECT
public:
MMSHDestBox( QWidget *_parent = NULL );
virtual QString getMRL( const QString& );
......@@ -92,7 +92,7 @@ class MMSHDestBox: public VirtualDestBox
class RTSPDestBox: public VirtualDestBox
{
Q_OBJECT;
Q_OBJECT
public:
RTSPDestBox( QWidget *_parent = NULL );
virtual QString getMRL( const QString& );
......@@ -103,7 +103,7 @@ class RTSPDestBox: public VirtualDestBox
class UDPDestBox: public VirtualDestBox
{
Q_OBJECT;
Q_OBJECT
public:
UDPDestBox( QWidget *_parent = NULL );
virtual QString getMRL( const QString& );
......@@ -114,7 +114,7 @@ class UDPDestBox: public VirtualDestBox
class RTPDestBox: public VirtualDestBox
{
Q_OBJECT;
Q_OBJECT
public:
RTPDestBox( QWidget *_parent = NULL, const char *mux = NULL );
virtual QString getMRL( const QString& );
......@@ -126,7 +126,7 @@ class RTPDestBox: public VirtualDestBox
class ICEDestBox: public VirtualDestBox
{
Q_OBJECT;
Q_OBJECT
public:
ICEDestBox( QWidget *_parent = NULL );
virtual QString getMRL( const QString& );
......
......@@ -33,7 +33,7 @@
class BookmarksDialog : public QVLCFrame, public Singleton<BookmarksDialog>
{
Q_OBJECT;
Q_OBJECT
private:
BookmarksDialog( intf_thread_t * );
virtual ~BookmarksDialog();
......
......@@ -32,7 +32,7 @@ class VLCProfileSelector;
class ConvertDialog : public QVLCDialog
{
Q_OBJECT;
Q_OBJECT
public:
ConvertDialog( QWidget *, intf_thread_t *, const QString& );
virtual ~ConvertDialog(){}
......
......@@ -32,7 +32,7 @@ class EPGEvent;
class EPGWidget;
class EpgDialog : public QVLCFrame, public Singleton<EpgDialog>
{
Q_OBJECT;
Q_OBJECT
private:
EpgDialog( intf_thread_t * );
virtual ~EpgDialog();
......
......@@ -34,7 +34,7 @@ class QTextEdit;
class ErrorsDialog : public QVLCDialog, public Singleton<ErrorsDialog>
{
Q_OBJECT;
Q_OBJECT
public:
void addError( const QString&, const QString& );
......
......@@ -33,7 +33,7 @@ class QTabWidget;
class ExtendedDialog : public QVLCFrame, public Singleton<ExtendedDialog>
{
Q_OBJECT;
Q_OBJECT
public:
void showTab( int i );
int currentTab();
......
......@@ -31,7 +31,7 @@ class QTimeEdit;
class GotoTimeDialog : public QVLCDialog, public Singleton<GotoTimeDialog>
{
Q_OBJECT;
Q_OBJECT
private:
GotoTimeDialog( intf_thread_t * );
virtual ~GotoTimeDialog();
......
......@@ -42,7 +42,7 @@ class QTextEdit;
class HelpDialog : public QVLCFrame, public Singleton<HelpDialog>
{
Q_OBJECT;
Q_OBJECT
private:
HelpDialog( intf_thread_t * );
virtual ~HelpDialog();
......@@ -56,7 +56,7 @@ public slots:
class AboutDialog : public QVLCDialog, public Singleton<AboutDialog>
{
Q_OBJECT;
Q_OBJECT
private:
AboutDialog( intf_thread_t * );
......@@ -75,7 +75,7 @@ static const int UDErrorEvent = QEvent::User + DialogEventType + 22;
class UpdateDialog : public QVLCFrame, public Singleton<UpdateDialog>
{
Q_OBJECT;
Q_OBJECT
public:
void updateNotify( bool );
......
......@@ -33,7 +33,7 @@ class QTabWidget;
class MediaInfoDialog : public QVLCFrame, public Singleton<MediaInfoDialog>
{
Q_OBJECT;
Q_OBJECT
public:
MediaInfoDialog( intf_thread_t *,
input_item_t * input = NULL );
......
......@@ -39,7 +39,7 @@ class QLineEdit;
class MessagesDialog : public QVLCFrame, public Singleton<MessagesDialog>
{
Q_OBJECT;
Q_OBJECT
private:
MessagesDialog( intf_thread_t * );
virtual ~MessagesDialog();
......
......@@ -57,7 +57,7 @@ class QTabWidget;
class OpenDialog : public QVLCDialog
{
Q_OBJECT;
Q_OBJECT
public:
static OpenDialog * getInstance( QWidget *parent, intf_thread_t *p_intf,
bool b_rawInstance = false, int _action_flag = 0,
......
......@@ -37,7 +37,7 @@ class QSettings;
class PlaylistDialog : public QVLCMW, public Singleton<PlaylistDialog>
{
Q_OBJECT;
Q_OBJECT
private:
PlaylistWidget *playlistWidget;
......
......@@ -53,7 +53,7 @@ class ExtensionCopy;
class PluginDialog : public QVLCFrame, public Singleton<PluginDialog>
{
Q_OBJECT;
Q_OBJECT
private:
PluginDialog( intf_thread_t * );
......@@ -68,7 +68,7 @@ private:
class PluginTab : public QVLCFrame
{
Q_OBJECT;
Q_OBJECT
private:
PluginTab( intf_thread_t *p_intf );
......@@ -86,7 +86,7 @@ private slots:
class ExtensionTab : public QVLCFrame
{
Q_OBJECT;
Q_OBJECT
protected:
virtual void keyPressEvent( QKeyEvent *keyEvent );
......
......@@ -30,7 +30,7 @@
class PodcastConfigDialog : public QVLCDialog, public Singleton<PodcastConfigDialog>
{
Q_OBJECT;
Q_OBJECT
private:
PodcastConfigDialog( intf_thread_t * );
......
......@@ -43,7 +43,7 @@ class QLabel;
class PrefsDialog : public QVLCDialog
{
Q_OBJECT;
Q_OBJECT
public:
PrefsDialog( QWidget *, intf_thread_t * );
virtual ~PrefsDialog() {}
......
......@@ -111,7 +111,7 @@ private:
class SoutDialog : public QVLCDialog
{
Q_OBJECT;
Q_OBJECT
public:
SoutDialog( QWidget* parent, intf_thread_t *, const QString& mrl = "");
virtual ~SoutDialog(){}
......
......@@ -49,7 +49,7 @@ class QComboBox;
class WidgetListing : public QListWidget
{
Q_OBJECT;
Q_OBJECT
public:
WidgetListing( intf_thread_t *, QWidget *_parent = 0 );
protected:
......@@ -60,7 +60,7 @@ private:
class ToolbarEditDialog : public QVLCDialog
{
Q_OBJECT;
Q_OBJECT
public:
ToolbarEditDialog( QWidget *, intf_thread_t * );
int getOptions() { return flatBox->isChecked() * WIDGET_FLAT +
......@@ -86,7 +86,7 @@ private slots:
class DroppingController: public AbstractController
{
Q_OBJECT;
Q_OBJECT
public:
DroppingController( intf_thread_t *, const QString& line, QWidget *parent = 0 );
QString getValue();
......
......@@ -70,7 +70,7 @@ class VLMWrapper;
class VLMDialog : public QVLCDialog, public Singleton<VLMDialog>
{
Q_OBJECT;
Q_OBJECT
public:
void toggleVisible();
......
......@@ -87,7 +87,7 @@ class QVLCMenu;
class DialogsProvider : public QObject
{
Q_OBJECT;
Q_OBJECT
friend class QVLCMenu;
public:
......
......@@ -113,7 +113,7 @@ public:
class InputManager : public QObject
{
Q_OBJECT;
Q_OBJECT
friend class MainInputManager;
public:
......@@ -238,7 +238,7 @@ signals:
class MainInputManager : public QObject
{
Q_OBJECT;
Q_OBJECT
public:
static MainInputManager *getInstance( intf_thread_t *_p_intf )
{
......
......@@ -64,7 +64,7 @@ enum {
class MainInterface : public QVLCMW
{
Q_OBJECT;
Q_OBJECT
friend class PlaylistWidget;
......
......@@ -71,7 +71,7 @@ private:
class QVLCMenu : public QObject
{
Q_OBJECT;
Q_OBJECT
friend class MenuFunc;
public:
......
......@@ -61,7 +61,7 @@ private:
class QVLCFramelessButton : public QPushButton
{
Q_OBJECT;
Q_OBJECT
public:
QVLCFramelessButton( QWidget *parent = NULL );
QSize sizeHint() const;
......
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