]> git.sesse.net Git - vlc/commitdiff
Qt4: This would be better. And should now be fine.
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 23 Nov 2006 13:37:45 +0000 (13:37 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 23 Nov 2006 13:37:45 +0000 (13:37 +0000)
modules/gui/qt4/dialogs/mediainfo.cpp
modules/gui/qt4/dialogs/mediainfo.hpp

index 8e5cdca3c34391b424cc0fd6ddb107aa4752297d..b7ae592de4361d36ed4e08b02ab49d08ae0c412e 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * streaminfo.cpp : Information about an item
+ * mediainfo.cpp : Information about an item
  ****************************************************************************
  * Copyright (C) 2006 the VideoLAN team
  * $Id$
@@ -24,7 +24,7 @@
 #include <QTabWidget>
 #include <QGridLayout>
 
-#include "dialogs/streaminfo.hpp"
+#include "dialogs/mediainfo.hpp"
 #include "input_manager.hpp"
 #include "dialogs_provider.hpp"
 #include "util/qvlcframe.hpp"
@@ -53,13 +53,13 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf ) :QVLCFrame( _p_intf )
     ON_TIMEOUT( update() );
 
     var_AddCallback( THEPL, "item-change", ItemChanged, this );
-    readSettings( "StreamInfo" , QSize( 500, 450 ) );
+    readSettings( "mediainfo" , QSize( 500, 450 ) );
 }
 
 MediaInfoDialog::~MediaInfoDialog()
 {
     var_DelCallback( THEPL, "item-change", ItemChanged, this );
-    writeSettings( "StreamInfo" );
+    writeSettings( "mediainfo" );
 }
 
 static int ItemChanged( vlc_object_t *p_this, const char *psz_var,
index e31dc7401aee3560b33b95b089e52210381c31c0..6545319c2d2ee9d60adff6ab91e214f0b03b2891 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * streaminfo.hpp : Information about a stream
+ * mediainfo.hpp : Information about a stream
  ****************************************************************************
  * Copyright (C) 2006 the VideoLAN team
  * $Id$