Browse Source

Qt: fixed include-guards for components

* renamed include-guards to fix issues with reserved identifiers

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
pull/42/head
Filip Roséen 10 years ago
committed by Jean-Baptiste Kempf
parent
commit
d0c1938231
  1. 4
      modules/gui/qt4/components/complete_preferences.hpp
  2. 4
      modules/gui/qt4/components/controller_widget.hpp
  3. 4
      modules/gui/qt4/components/extended_panels.hpp
  4. 4
      modules/gui/qt4/components/info_panels.hpp
  5. 4
      modules/gui/qt4/components/interface_widgets.hpp
  6. 4
      modules/gui/qt4/components/open_panels.hpp
  7. 4
      modules/gui/qt4/components/preferences_widgets.hpp
  8. 4
      modules/gui/qt4/components/simple_preferences.hpp

4
modules/gui/qt4/components/complete_preferences.hpp

@ -21,8 +21,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _PREFSTREE_H_
#define _PREFSTREE_H_
#ifndef VLC_QT_COMPLETE_PREFERENCES_HPP_
#define VLC_QT_COMPLETE_PREFERENCES_HPP_
#ifdef HAVE_CONFIG_H
# include "config.h"

4
modules/gui/qt4/components/controller_widget.hpp

@ -21,8 +21,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _CONTROLLER_WIDGET_H_
#define _CONTROLLER_WIDGET_H_
#ifndef VLC_QT_CONTROLLER_WIDGET_HPP_
#define VLC_QT_CONTROLLER_WIDGET_HPP_
#ifdef HAVE_CONFIG_H
# include "config.h"

4
modules/gui/qt4/components/extended_panels.hpp

@ -22,8 +22,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _EQUALIZER_H_
#define _EQUALIZER_H_
#ifndef VLC_QT_EXTENDED_PANELS_HPP_
#define VLC_QT_EXTENDED_PANELS_HPP_
#ifdef HAVE_CONFIG_H
# include "config.h"

4
modules/gui/qt4/components/info_panels.hpp

@ -23,8 +23,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _INFOPANELS_H_
#define _INFOPANELS_H_
#ifndef VLC_QT_INFO_PANELS_HPP_
#define VLC_QT_INFO_PANELS_HPP_
#ifdef HAVE_CONFIG_H
# include "config.h"

4
modules/gui/qt4/components/interface_widgets.hpp

@ -23,8 +23,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _INTFWIDGETS_H_
#define _INTFWIDGETS_H_
#ifndef VLC_QT_INTERFACE_WIDGETS_HPP_
#define VLC_QT_INTERFACE_WIDGETS_HPP_
#ifdef HAVE_CONFIG_H
# include "config.h"

4
modules/gui/qt4/components/open_panels.hpp

@ -25,8 +25,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _OPENPANELS_H_
#define _OPENPANELS_H_
#ifndef VLC_QT_OPEN_PANELS_HPP_
#define VLC_QT_OPEN_PANELS_HPP_
#ifdef HAVE_CONFIG_H
# include "config.h"

4
modules/gui/qt4/components/preferences_widgets.hpp

@ -23,8 +23,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _PREFERENCESWIDGETS_H_
#define _PREFERENCESWIDGETS_H_
#ifndef VLC_QT_PREFERENCES_WIDGETS_HPP_
#define VLC_QT_PREFERENCES_WIDGETS_HPP_
#ifdef HAVE_CONFIG_H
# include "config.h"

4
modules/gui/qt4/components/simple_preferences.hpp

@ -21,8 +21,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _SIMPLEPREFS_H_
#define _SIMPLEPREFS_H_
#ifndef VLC_QT_SIMPLE_PREFERENCES_HPP_
#define VLC_QT_SIMPLE_PREFERENCES_HPP_
#ifdef HAVE_CONFIG_H
# include "config.h"

Loading…
Cancel
Save