Changeset f15e3d7d656dbea29926b7c72092c1c84f0eb212

Show
Ignore:
Timestamp:
11/23/06 14:37:45 (2 years ago)
Author:
Jean-Baptiste Kempf <jb@videolan.org>
git-committer:
Jean-Baptiste Kempf <jb@videolan.org> 1164289065 +0000
git-parent:

[f7166b8bd7a46cdd8175fbe4169f5162f287f74d]

git-author:
Jean-Baptiste Kempf <jb@videolan.org> 1164289065 +0000
Message:

Qt4: This would be better. And should now be fine.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/qt4/dialogs/mediainfo.cpp

    racd8262 rf15e3d7  
    11/***************************************************************************** 
    2  * streaminfo.cpp : Information about an item 
     2 * mediainfo.cpp : Information about an item 
    33 **************************************************************************** 
    44 * Copyright (C) 2006 the VideoLAN team 
     
    2525#include <QGridLayout> 
    2626 
    27 #include "dialogs/streaminfo.hpp" 
     27#include "dialogs/mediainfo.hpp" 
    2828#include "input_manager.hpp" 
    2929#include "dialogs_provider.hpp" 
     
    5454 
    5555    var_AddCallback( THEPL, "item-change", ItemChanged, this ); 
    56     readSettings( "StreamInfo" , QSize( 500, 450 ) ); 
     56    readSettings( "mediainfo" , QSize( 500, 450 ) ); 
    5757} 
    5858 
     
    6060{ 
    6161    var_DelCallback( THEPL, "item-change", ItemChanged, this ); 
    62     writeSettings( "StreamInfo" ); 
     62    writeSettings( "mediainfo" ); 
    6363} 
    6464 
  • modules/gui/qt4/dialogs/mediainfo.hpp

    racd8262 rf15e3d7  
    11/***************************************************************************** 
    2  * streaminfo.hpp : Information about a stream 
     2 * mediainfo.hpp : Information about a stream 
    33 **************************************************************************** 
    44 * Copyright (C) 2006 the VideoLAN team