[vlc-devel] [PATCH 6/8] suppress trailing period and semicolons

Francois Cartegnie fcvlcdev at free.fr
Wed Apr 14 16:53:18 CEST 2010


---
 include/vlc_common.h                               |    2 +-
 include/vlc_configuration.h                        |    2 +-
 include/vlc_es.h                                   |    2 +-
 include/vlc_extensions.h                           |    6 +++---
 include/vlc_input.h                                |    6 +++---
 include/vlc_input_item.h                           |    2 +-
 include/vlc_interface.h                            |    2 +-
 include/vlc_messages.h                             |    2 +-
 include/vlc_mouse.h                                |    2 +-
 include/vlc_picture.h                              |    8 ++++----
 include/vlc_playlist.h                             |    2 +-
 include/vlc_variables.h                            |    2 +-
 include/vlc_vout.h                                 |    2 +-
 modules/gui/qt4/actions_manager.hpp                |    2 +-
 modules/gui/qt4/components/open_panels.hpp         |   12 ++++++------
 modules/gui/qt4/components/preferences_widgets.hpp |   14 +++++++-------
 modules/gui/qt4/dialogs/bookmarks.hpp              |    2 +-
 modules/gui/qt4/dialogs/convert.hpp                |    2 +-
 modules/gui/qt4/dialogs/epg.hpp                    |    2 +-
 modules/gui/qt4/dialogs/errors.hpp                 |    2 +-
 modules/gui/qt4/dialogs/extended.hpp               |    2 +-
 modules/gui/qt4/dialogs/gototime.hpp               |    2 +-
 modules/gui/qt4/dialogs/help.hpp                   |    6 +++---
 modules/gui/qt4/dialogs/mediainfo.hpp              |    2 +-
 modules/gui/qt4/dialogs/messages.hpp               |    2 +-
 modules/gui/qt4/dialogs/open.hpp                   |    2 +-
 modules/gui/qt4/dialogs/playlist.hpp               |    2 +-
 modules/gui/qt4/dialogs/plugins.hpp                |    6 +++---
 modules/gui/qt4/dialogs/podcast_configuration.hpp  |    2 +-
 modules/gui/qt4/dialogs/preferences.hpp            |    2 +-
 modules/gui/qt4/dialogs/sout.hpp                   |    2 +-
 modules/gui/qt4/dialogs/toolbar.hpp                |    6 +++---
 modules/gui/qt4/dialogs/vlm.hpp                    |    2 +-
 modules/gui/qt4/dialogs_provider.hpp               |    6 +++---
 modules/gui/qt4/input_manager.hpp                  |    8 ++++----
 modules/gui/qt4/main_interface.hpp                 |    4 ++--
 modules/gui/qt4/menus.hpp                          |    2 +-
 modules/gui/qt4/qt4.hpp                            |    2 +-
 38 files changed, 68 insertions(+), 68 deletions(-)

diff --git a/include/vlc_common.h b/include/vlc_common.h
index c138d89..ef6783f 100644
--- a/include/vlc_common.h
+++ b/include/vlc_common.h
@@ -188,7 +188,7 @@ typedef enum {
                         /**  arg2 = playlist_item_t*          , res=can fail */
     PLAYLIST_PAUSE,     /**< No arg                             res=can fail*/
     PLAYLIST_STOP,      /**< No arg                             res=can fail*/
-    PLAYLIST_SKIP,      /**< arg1=int,                          res=can fail*/
+    PLAYLIST_SKIP       /**< arg1=int,                          res=can fail*/
 } playlist_command_t;
 
 
diff --git a/include/vlc_configuration.h b/include/vlc_configuration.h
index e9f88f0..48193ee 100644
--- a/include/vlc_configuration.h
+++ b/include/vlc_configuration.h
@@ -232,7 +232,7 @@ typedef enum vlc_userdir
     VLC_DOCUMENTS_DIR,
     VLC_MUSIC_DIR,
     VLC_PICTURES_DIR,
-    VLC_VIDEOS_DIR,
+    VLC_VIDEOS_DIR
 } vlc_userdir_t;
 
 VLC_EXPORT(char *, config_GetUserDir, ( vlc_userdir_t ) LIBVLC_USED);
diff --git a/include/vlc_es.h b/include/vlc_es.h
index 3d1ec2f..0b5f104 100644
--- a/include/vlc_es.h
+++ b/include/vlc_es.h
@@ -271,7 +271,7 @@ enum es_format_category_e
     VIDEO_ES   = 0x01,
     AUDIO_ES   = 0x02,
     SPU_ES     = 0x03,
-    NAV_ES     = 0x04,
+    NAV_ES     = 0x04
 };
 
 /**
diff --git a/include/vlc_extensions.h b/include/vlc_extensions.h
index 07c6221..c17d0f2 100644
--- a/include/vlc_extensions.h
+++ b/include/vlc_extensions.h
@@ -75,7 +75,7 @@ enum
     EXTENSION_TRIGGER,        /**< arg1: extension_t* */
     EXTENSION_TRIGGER_MENU,   /**< arg1: extension_t*, int (uint16_t) */
     EXTENSION_SET_INPUT,      /**< arg1: extension_t*, arg2 (input_thread_t) */
-    EXTENSION_PLAYING_CHANGED, /**< arg1: extension_t*, arg2 int( playing status ) */
+    EXTENSION_PLAYING_CHANGED /**< arg1: extension_t*, arg2 int( playing status ) */
 };
 
 /**
@@ -178,7 +178,7 @@ typedef struct extension_widget_t extension_widget_t;
 typedef enum
 {
     EXTENSION_EVENT_CLICK,       ///< Click on a widget: data = widget
-    EXTENSION_EVENT_CLOSE,       ///< Close the dialog: no data
+    EXTENSION_EVENT_CLOSE        ///< Close the dialog: no data
     // EXTENSION_EVENT_SELECTION_CHANGED,
     // EXTENSION_EVENT_TEXT_CHANGED,
 } extension_dialog_event_e;
@@ -254,7 +254,7 @@ typedef enum
     EXTENSION_WIDGET_PASSWORD,   ///< Editable password input (******)
     EXTENSION_WIDGET_DROPDOWN,   ///< Drop-down box
     EXTENSION_WIDGET_LIST,       ///< Vertical list box (of strings)
-    EXTENSION_WIDGET_CHECK_BOX,  ///< Checkable box with label
+    EXTENSION_WIDGET_CHECK_BOX   ///< Checkable box with label
 } extension_widget_type_e;
 
 /// Widget descriptor for extensions
diff --git a/include/vlc_input.h b/include/vlc_input.h
index ac90b10..410f1d6 100644
--- a/include/vlc_input.h
+++ b/include/vlc_input.h
@@ -339,7 +339,7 @@ typedef enum input_state_e
     PLAYING_S,
     PAUSE_S,
     END_S,
-    ERROR_S,
+    ERROR_S
 } input_state_e;
 
 /**
@@ -437,7 +437,7 @@ typedef enum input_event_type_e
     /* A aout_instance_t object has been created/deleted by *the input* */
     INPUT_EVENT_AOUT,
     /* A vout_thread_t object has been created/deleted by *the input* */
-    INPUT_EVENT_VOUT,
+    INPUT_EVENT_VOUT
 
 } input_event_type_e;
 
@@ -517,7 +517,7 @@ enum input_query_e
 
     /* External clock managments */
     INPUT_GET_PCR_SYSTEM,   /* arg1=mtime_t *, arg2=mtime_t *       res=can fail */
-    INPUT_MODIFY_PCR_SYSTEM,/* arg1=int absolute, arg2=mtime_t      res=can fail */
+    INPUT_MODIFY_PCR_SYSTEM /* arg1=int absolute, arg2=mtime_t      res=can fail */
 };
 
 /** @}*/
diff --git a/include/vlc_input_item.h b/include/vlc_input_item.h
index ca11d09..1a999de 100644
--- a/include/vlc_input_item.h
+++ b/include/vlc_input_item.h
@@ -176,7 +176,7 @@ enum input_item_option_e
 
     /* Change the value associated to an option if already present, otherwise
      * add the option */
-    VLC_INPUT_OPTION_UNIQUE  = 0x100,
+    VLC_INPUT_OPTION_UNIQUE  = 0x100
 };
 
 /**
diff --git a/include/vlc_interface.h b/include/vlc_interface.h
index 4c0c79f..3db7b49 100644
--- a/include/vlc_interface.h
+++ b/include/vlc_interface.h
@@ -281,7 +281,7 @@ enum
 enum
 {
     ANSWERED_DIALOG,            ///< Got "answer"
-    DESTROYED_DIALOG,           ///< Interface has destroyed it
+    DESTROYED_DIALOG            ///< Interface has destroyed it
 };
 
 /** Possible actions */
diff --git a/include/vlc_messages.h b/include/vlc_messages.h
index 80fc1b3..ab62da8 100644
--- a/include/vlc_messages.h
+++ b/include/vlc_messages.h
@@ -197,7 +197,7 @@ enum
     STATS_TIMER_VIDEO_FRAME_ENCODING,
     STATS_TIMER_AUDIO_FRAME_ENCODING,
 
-    STATS_TIMER_SKINS_PLAYTREE_IMAGE,
+    STATS_TIMER_SKINS_PLAYTREE_IMAGE
 };
 
 /*********
diff --git a/include/vlc_mouse.h b/include/vlc_mouse.h
index dff2129..b32a8f9 100644
--- a/include/vlc_mouse.h
+++ b/include/vlc_mouse.h
@@ -33,7 +33,7 @@ enum
 	MOUSE_BUTTON_CENTER,
 	MOUSE_BUTTON_RIGHT,
 	MOUSE_BUTTON_WHEEL_UP,
-	MOUSE_BUTTON_WHEEL_DOWN,
+	MOUSE_BUTTON_WHEEL_DOWN
 };
 
 /**
diff --git a/include/vlc_picture.h b/include/vlc_picture.h
index 458bb2b..63c1421 100644
--- a/include/vlc_picture.h
+++ b/include/vlc_picture.h
@@ -306,7 +306,7 @@ enum
 {
     EMPTY_PICTURE = 0,                             /* empty buffer */
     MEMORY_PICTURE = 100,                 /* heap-allocated buffer */
-    DIRECT_PICTURE = 200,                         /* direct buffer */
+    DIRECT_PICTURE = 200                          /* direct buffer */
 };
 
 /* Picture status */
@@ -316,7 +316,7 @@ enum
     RESERVED_PICTURE,                          /* allocated and reserved */
     READY_PICTURE,                                  /* ready for display */
     DISPLAYED_PICTURE,                   /* been displayed but is linked */
-    DESTROYED_PICTURE,                     /* allocated but no more used */
+    DESTROYED_PICTURE                      /* allocated but no more used */
 };
 
 /* Quantification type */
@@ -326,7 +326,7 @@ enum
 
     QTYPE_MPEG1,
     QTYPE_MPEG2,
-    QTYPE_H264,
+    QTYPE_H264
 };
 
 /*****************************************************************************
@@ -339,7 +339,7 @@ enum
     Y_PLANE = 0,
     U_PLANE = 1,
     V_PLANE = 2,
-    A_PLANE = 3,
+    A_PLANE = 3
 };
 
 /* Shortcuts */
diff --git a/include/vlc_playlist.h b/include/vlc_playlist.h
index f6cb8a9..0520031 100644
--- a/include/vlc_playlist.h
+++ b/include/vlc_playlist.h
@@ -232,7 +232,7 @@ enum
 enum
 {
     ORDER_NORMAL = 0,
-    ORDER_REVERSE = 1,
+    ORDER_REVERSE = 1
 };
 
 /* Used by playlist_Import */
diff --git a/include/vlc_variables.h b/include/vlc_variables.h
index 4a0de14..7aeb5ce 100644
--- a/include/vlc_variables.h
+++ b/include/vlc_variables.h
@@ -121,7 +121,7 @@ enum {
     VLC_VAR_BOOL_TOGGLE, /**< Invert a boolean value (param ignored) */
     VLC_VAR_INTEGER_ADD, /**< Add parameter to an integer value */
     VLC_VAR_INTEGER_OR,  /**< Binary OR over an integer bits field */
-    VLC_VAR_INTEGER_NAND,/**< Binary NAND over an integer bits field */
+    VLC_VAR_INTEGER_NAND /**< Binary NAND over an integer bits field */
 };
 /**@}*/
 
diff --git a/include/vlc_vout.h b/include/vlc_vout.h
index e739d93..41b679c 100644
--- a/include/vlc_vout.h
+++ b/include/vlc_vout.h
@@ -344,7 +344,7 @@ enum output_query_e
 {
     VOUT_SET_STAY_ON_TOP=1, /* arg1= bool       res=    */
     VOUT_SET_VIEWPORT,      /* arg1= view rect, arg2=clip rect, res= */
-    VOUT_REDRAW_RECT,       /* arg1= area rect, res= */
+    VOUT_REDRAW_RECT        /* arg1= area rect, res= */
 };
 
 /**@}*/
diff --git a/modules/gui/qt4/actions_manager.hpp b/modules/gui/qt4/actions_manager.hpp
index fb05481..6d688c5 100644
--- a/modules/gui/qt4/actions_manager.hpp
+++ b/modules/gui/qt4/actions_manager.hpp
@@ -53,7 +53,7 @@ typedef enum actionType_e
     QUIT_ACTION,
     RANDOM_ACTION,
     LOOP_ACTION,
-    INFO_ACTION,
+    INFO_ACTION
 } actionType_e;
 
 class ActionsManager : public QObject
diff --git a/modules/gui/qt4/components/open_panels.hpp b/modules/gui/qt4/components/open_panels.hpp
index 6d8cbb4..4d2d05b 100644
--- a/modules/gui/qt4/components/open_panels.hpp
+++ b/modules/gui/qt4/components/open_panels.hpp
@@ -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();
diff --git a/modules/gui/qt4/components/preferences_widgets.hpp b/modules/gui/qt4/components/preferences_widgets.hpp
index fea298e..412f21e 100644
--- a/modules/gui/qt4/components/preferences_widgets.hpp
+++ b/modules/gui/qt4/components/preferences_widgets.hpp
@@ -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& );
diff --git a/modules/gui/qt4/dialogs/bookmarks.hpp b/modules/gui/qt4/dialogs/bookmarks.hpp
index af55f4a..119960c 100644
--- a/modules/gui/qt4/dialogs/bookmarks.hpp
+++ b/modules/gui/qt4/dialogs/bookmarks.hpp
@@ -33,7 +33,7 @@
 
 class BookmarksDialog : public QVLCFrame, public Singleton<BookmarksDialog>
 {
-    Q_OBJECT;
+    Q_OBJECT
 private:
     BookmarksDialog( intf_thread_t * );
     virtual ~BookmarksDialog();
diff --git a/modules/gui/qt4/dialogs/convert.hpp b/modules/gui/qt4/dialogs/convert.hpp
index 227aba2..1df5186 100644
--- a/modules/gui/qt4/dialogs/convert.hpp
+++ b/modules/gui/qt4/dialogs/convert.hpp
@@ -32,7 +32,7 @@ class VLCProfileSelector;
 
 class ConvertDialog : public QVLCDialog
 {
-    Q_OBJECT;
+    Q_OBJECT
 public:
     ConvertDialog( QWidget *, intf_thread_t *, const QString& );
     virtual ~ConvertDialog(){}
diff --git a/modules/gui/qt4/dialogs/epg.hpp b/modules/gui/qt4/dialogs/epg.hpp
index d8d24a1..9213182 100644
--- a/modules/gui/qt4/dialogs/epg.hpp
+++ b/modules/gui/qt4/dialogs/epg.hpp
@@ -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();
diff --git a/modules/gui/qt4/dialogs/errors.hpp b/modules/gui/qt4/dialogs/errors.hpp
index ebe8f32..8db1d3d 100644
--- a/modules/gui/qt4/dialogs/errors.hpp
+++ b/modules/gui/qt4/dialogs/errors.hpp
@@ -34,7 +34,7 @@ class QTextEdit;
 
 class ErrorsDialog : public QVLCDialog, public Singleton<ErrorsDialog>
 {
-    Q_OBJECT;
+    Q_OBJECT
 public:
 
     void addError( const QString&, const QString& );
diff --git a/modules/gui/qt4/dialogs/extended.hpp b/modules/gui/qt4/dialogs/extended.hpp
index ed16ded..0c651da 100644
--- a/modules/gui/qt4/dialogs/extended.hpp
+++ b/modules/gui/qt4/dialogs/extended.hpp
@@ -33,7 +33,7 @@ class QTabWidget;
 
 class ExtendedDialog : public QVLCFrame, public Singleton<ExtendedDialog>
 {
-    Q_OBJECT;
+    Q_OBJECT
 public:
     void showTab( int i );
     int currentTab();
diff --git a/modules/gui/qt4/dialogs/gototime.hpp b/modules/gui/qt4/dialogs/gototime.hpp
index f84961d..a173d10 100644
--- a/modules/gui/qt4/dialogs/gototime.hpp
+++ b/modules/gui/qt4/dialogs/gototime.hpp
@@ -31,7 +31,7 @@ class QTimeEdit;
 
 class GotoTimeDialog : public QVLCDialog, public Singleton<GotoTimeDialog>
 {
-    Q_OBJECT;
+    Q_OBJECT
 private:
     GotoTimeDialog( intf_thread_t * );
     virtual ~GotoTimeDialog();
diff --git a/modules/gui/qt4/dialogs/help.hpp b/modules/gui/qt4/dialogs/help.hpp
index e5b04e9..0f1a2b2 100644
--- a/modules/gui/qt4/dialogs/help.hpp
+++ b/modules/gui/qt4/dialogs/help.hpp
@@ -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 );
 
diff --git a/modules/gui/qt4/dialogs/mediainfo.hpp b/modules/gui/qt4/dialogs/mediainfo.hpp
index 4343bb7..469ae67 100644
--- a/modules/gui/qt4/dialogs/mediainfo.hpp
+++ b/modules/gui/qt4/dialogs/mediainfo.hpp
@@ -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 );
diff --git a/modules/gui/qt4/dialogs/messages.hpp b/modules/gui/qt4/dialogs/messages.hpp
index 720080a..762adb8 100644
--- a/modules/gui/qt4/dialogs/messages.hpp
+++ b/modules/gui/qt4/dialogs/messages.hpp
@@ -39,7 +39,7 @@ class QLineEdit;
 
 class MessagesDialog : public QVLCFrame, public Singleton<MessagesDialog>
 {
-    Q_OBJECT;
+    Q_OBJECT
 private:
     MessagesDialog( intf_thread_t * );
     virtual ~MessagesDialog();
diff --git a/modules/gui/qt4/dialogs/open.hpp b/modules/gui/qt4/dialogs/open.hpp
index 694b465..db2efbb 100644
--- a/modules/gui/qt4/dialogs/open.hpp
+++ b/modules/gui/qt4/dialogs/open.hpp
@@ -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,
diff --git a/modules/gui/qt4/dialogs/playlist.hpp b/modules/gui/qt4/dialogs/playlist.hpp
index ac20a45..9b0c63f 100644
--- a/modules/gui/qt4/dialogs/playlist.hpp
+++ b/modules/gui/qt4/dialogs/playlist.hpp
@@ -37,7 +37,7 @@ class QSettings;
 
 class PlaylistDialog : public QVLCMW, public Singleton<PlaylistDialog>
 {
-    Q_OBJECT;
+    Q_OBJECT
 private:
     PlaylistWidget *playlistWidget;
 
diff --git a/modules/gui/qt4/dialogs/plugins.hpp b/modules/gui/qt4/dialogs/plugins.hpp
index 2f97e9f..c61de2a 100644
--- a/modules/gui/qt4/dialogs/plugins.hpp
+++ b/modules/gui/qt4/dialogs/plugins.hpp
@@ -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 );
diff --git a/modules/gui/qt4/dialogs/podcast_configuration.hpp b/modules/gui/qt4/dialogs/podcast_configuration.hpp
index b653cf8..b06ff12 100644
--- a/modules/gui/qt4/dialogs/podcast_configuration.hpp
+++ b/modules/gui/qt4/dialogs/podcast_configuration.hpp
@@ -30,7 +30,7 @@
 
 class PodcastConfigDialog : public QVLCDialog, public Singleton<PodcastConfigDialog>
 {
-    Q_OBJECT;
+    Q_OBJECT
 
 private:
     PodcastConfigDialog( intf_thread_t * );
diff --git a/modules/gui/qt4/dialogs/preferences.hpp b/modules/gui/qt4/dialogs/preferences.hpp
index ef50b52..e141240 100644
--- a/modules/gui/qt4/dialogs/preferences.hpp
+++ b/modules/gui/qt4/dialogs/preferences.hpp
@@ -43,7 +43,7 @@ class QLabel;
 
 class PrefsDialog : public QVLCDialog
 {
-    Q_OBJECT;
+    Q_OBJECT
 public:
     PrefsDialog( QWidget *, intf_thread_t * );
     virtual ~PrefsDialog() {}
diff --git a/modules/gui/qt4/dialogs/sout.hpp b/modules/gui/qt4/dialogs/sout.hpp
index 2203336..85c1284 100644
--- a/modules/gui/qt4/dialogs/sout.hpp
+++ b/modules/gui/qt4/dialogs/sout.hpp
@@ -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(){}
diff --git a/modules/gui/qt4/dialogs/toolbar.hpp b/modules/gui/qt4/dialogs/toolbar.hpp
index 12b419c..6a436d8 100644
--- a/modules/gui/qt4/dialogs/toolbar.hpp
+++ b/modules/gui/qt4/dialogs/toolbar.hpp
@@ -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();
diff --git a/modules/gui/qt4/dialogs/vlm.hpp b/modules/gui/qt4/dialogs/vlm.hpp
index ed68e58..bcb89dc 100644
--- a/modules/gui/qt4/dialogs/vlm.hpp
+++ b/modules/gui/qt4/dialogs/vlm.hpp
@@ -70,7 +70,7 @@ class VLMWrapper;
 
 class VLMDialog : public QVLCDialog, public Singleton<VLMDialog>
 {
-    Q_OBJECT;
+    Q_OBJECT
 
 public:
     void toggleVisible();
diff --git a/modules/gui/qt4/dialogs_provider.hpp b/modules/gui/qt4/dialogs_provider.hpp
index 60f1dd8..bd192b8 100644
--- a/modules/gui/qt4/dialogs_provider.hpp
+++ b/modules/gui/qt4/dialogs_provider.hpp
@@ -71,14 +71,14 @@ enum {
     EXT_FILTER_VIDEO     =  0x02,
     EXT_FILTER_AUDIO     =  0x04,
     EXT_FILTER_PLAYLIST  =  0x08,
-    EXT_FILTER_SUBTITLE  =  0x10,
+    EXT_FILTER_SUBTITLE  =  0x10
 };
 
 enum {
     DialogEvent_Type = QEvent::User + DialogEventType + 1,
     //PLUndockEvent_Type = QEvent::User + DialogEventType + 2;
     //PLDockEvent_Type = QEvent::User + DialogEventType + 3;
-    SetVideoOnTopEvent_Type = QEvent::User + DialogEventType + 4,
+    SetVideoOnTopEvent_Type = QEvent::User + DialogEventType + 4
 };
 
 class QEvent;
@@ -87,7 +87,7 @@ class QVLCMenu;
 
 class DialogsProvider : public QObject
 {
-    Q_OBJECT;
+    Q_OBJECT
     friend class QVLCMenu;
 
 public:
diff --git a/modules/gui/qt4/input_manager.hpp b/modules/gui/qt4/input_manager.hpp
index d96c0a0..077eb2b 100644
--- a/modules/gui/qt4/input_manager.hpp
+++ b/modules/gui/qt4/input_manager.hpp
@@ -67,12 +67,12 @@ enum {
     FullscreenControlToggle_Type = QEvent::User + IMEventType + 20,
     FullscreenControlShow_Type,
     FullscreenControlHide_Type,
-    FullscreenControlPlanHide_Type,
+    FullscreenControlPlanHide_Type
 };
 
 enum { NORMAL,    /* loop: 0, repeat: 0 */
        REPEAT_ONE,/* loop: 1, repeat: 0 */
-       REPEAT_ALL,/* loop: 0, repeat: 1 */
+       REPEAT_ALL /* loop: 0, repeat: 1 */
 };
 
 class IMEvent : public QEvent
@@ -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 )
     {
diff --git a/modules/gui/qt4/main_interface.hpp b/modules/gui/qt4/main_interface.hpp
index a5efc7c..8455f2e 100644
--- a/modules/gui/qt4/main_interface.hpp
+++ b/modules/gui/qt4/main_interface.hpp
@@ -58,13 +58,13 @@ class QSize;
 enum {
     CONTROLS_VISIBLE  = 0x1,
     CONTROLS_HIDDEN   = 0x2,
-    CONTROLS_ADVANCED = 0x4,
+    CONTROLS_ADVANCED = 0x4
 };
 
 
 class MainInterface : public QVLCMW
 {
-    Q_OBJECT;
+    Q_OBJECT
 
     friend class PlaylistWidget;
 
diff --git a/modules/gui/qt4/menus.hpp b/modules/gui/qt4/menus.hpp
index f1d89f2..f553679 100644
--- a/modules/gui/qt4/menus.hpp
+++ b/modules/gui/qt4/menus.hpp
@@ -71,7 +71,7 @@ private:
 
 class QVLCMenu : public QObject
 {
-    Q_OBJECT;
+    Q_OBJECT
     friend class MenuFunc;
 
 public:
diff --git a/modules/gui/qt4/qt4.hpp b/modules/gui/qt4/qt4.hpp
index 64f5821..5ec955d 100644
--- a/modules/gui/qt4/qt4.hpp
+++ b/modules/gui/qt4/qt4.hpp
@@ -49,7 +49,7 @@ enum {
     DialogEventType = 0,
     IMEventType     = 100,
     PLEventType     = 200,
-    MsgEventType    = 300,
+    MsgEventType    = 300
 };
 
 class QVLCApp;
-- 
1.6.3




More information about the vlc-devel mailing list