~ubuntu-branches/ubuntu/lucid/vlc/lucid-security

« back to all changes in this revision

Viewing changes to modules/gui/qt4/components/info_panels.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2009-09-25 14:44:17 UTC
  • mfrom: (3.5.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090925144417-87vomt575d0agvqa
Tags: 1.0.2-1ubuntu1
* Merge from Debian unstable (LP: #435524), remaining changes:
  - build against xulrunner-dev instead of iceape-dev
  - build against libx264-dev and install libx264 plugin
  - add Xb-Npp header to vlc package
  - recommend vlc-plugin-pulse for vlc

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * infopanels.cpp : Panels for the information dialogs
3
3
 ****************************************************************************
4
4
 * Copyright (C) 2006-2007 the VideoLAN team
5
 
 * $Id: dcd0417371e93138c75421b48f39f62bfea7ec9f $
 
5
 * $Id: b3ede5abd9cbb88c578563e4782036ffe6054778 $
6
6
 *
7
7
 * Authors: Clément Stenac <zorglub@videolan.org>
8
8
 *          Jean-Baptiste Kempf <jb@videolan.org>
423
423
     InfoTree = new QTreeWidget(this);
424
424
     InfoTree->setColumnCount( 1 );
425
425
     InfoTree->header()->hide();
 
426
     InfoTree->header()->setStretchLastSection(false);
 
427
     InfoTree->header()->setResizeMode(QHeaderView::ResizeToContents);
426
428
     layout->addWidget(InfoTree, 1, 0 );
427
429
}
428
430