]> git.sesse.net Git - vlc/blobdiff - modules/gui/wince/messages.cpp
For consistency, remove references to vlc from libvlc
[vlc] / modules / gui / wince / messages.cpp
index 6417d4d8e0cb501bce6214ec2deb8d56c362fbe2..65431bf3ea03364225a97ca19ed9d4bd224a3587 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * messages.cpp : WinCE gui plugin for VLC
  *****************************************************************************
- * Copyright (C) 2000-2004 VideoLAN
+ * Copyright (C) 2000-2004 the VideoLAN team
  * $Id$
  *
  * Authors: Marodon Cedric <cedric_marodon@yahoo.fr>
@@ -19,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
@@ -209,13 +209,13 @@ void Messages::UpdateLog()
             {
             case VLC_MSG_ERR:
             case VLC_MSG_INFO:
-                if( p_intf->p_libvlc->i_verbose < 0 ) continue;
+                if( p_intf->p_libvlc_global->i_verbose < 0 ) continue;
                 break;
             case VLC_MSG_WARN:
-                if( p_intf->p_libvlc->i_verbose < 1 ) continue;
+                if( p_intf->p_libvlc_global->i_verbose < 1 ) continue;
                 break;
             case VLC_MSG_DBG:
-                if( p_intf->p_libvlc->i_verbose < 2 ) continue;
+                if( p_intf->p_libvlc_global->i_verbose < 2 ) continue;
                 break;
             }