1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-13 02:40:52 +02:00

Hide the header bar of the Tree.

This commit is contained in:
Rémi Duraffort 2008-02-09 09:00:56 +00:00
parent bd26b5fae4
commit 5e224f9c4a

View File

@ -38,6 +38,7 @@
#include <QTabWidget>
#include <QTreeWidget>
#include <QTreeWidgetItem>
#include <QHeaderView>
MessagesDialog *MessagesDialog::instance = NULL;
@ -98,6 +99,7 @@ MessagesDialog::MessagesDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf )
modulesTree = new QTreeWidget();
modulesTree->setGeometry( 0, 0, 440, 600 );
modulesTree->header()->hide();
QPushButton *updateButton = new QPushButton( qtr( "&Update" ) );