Changeset f15e3d7d656dbea29926b7c72092c1c84f0eb212
- 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
| racd8262 |
rf15e3d7 |
|
| 1 | 1 | /***************************************************************************** |
|---|
| 2 | | * streaminfo.cpp : Information about an item |
|---|
| | 2 | * mediainfo.cpp : Information about an item |
|---|
| 3 | 3 | **************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2006 the VideoLAN team |
|---|
| … | … | |
| 25 | 25 | #include <QGridLayout> |
|---|
| 26 | 26 | |
|---|
| 27 | | #include "dialogs/streaminfo.hpp" |
|---|
| | 27 | #include "dialogs/mediainfo.hpp" |
|---|
| 28 | 28 | #include "input_manager.hpp" |
|---|
| 29 | 29 | #include "dialogs_provider.hpp" |
|---|
| … | … | |
| 54 | 54 | |
|---|
| 55 | 55 | var_AddCallback( THEPL, "item-change", ItemChanged, this ); |
|---|
| 56 | | readSettings( "StreamInfo" , QSize( 500, 450 ) ); |
|---|
| | 56 | readSettings( "mediainfo" , QSize( 500, 450 ) ); |
|---|
| 57 | 57 | } |
|---|
| 58 | 58 | |
|---|
| … | … | |
| 60 | 60 | { |
|---|
| 61 | 61 | var_DelCallback( THEPL, "item-change", ItemChanged, this ); |
|---|
| 62 | | writeSettings( "StreamInfo" ); |
|---|
| | 62 | writeSettings( "mediainfo" ); |
|---|
| 63 | 63 | } |
|---|
| 64 | 64 | |
|---|
| racd8262 |
rf15e3d7 |
|
| 1 | 1 | /***************************************************************************** |
|---|
| 2 | | * streaminfo.hpp : Information about a stream |
|---|
| | 2 | * mediainfo.hpp : Information about a stream |
|---|
| 3 | 3 | **************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2006 the VideoLAN team |
|---|