Commit c3756012 authored by Erwan Tulou's avatar Erwan Tulou Committed by Christophe Mutricy

correct a compilation error specific to QT4.3

(gridLayout naming is hardcoded and seems to have changed)
Acked-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
Signed-off-by: default avatarChristophe Mutricy <xtophe@videolan.org>
parent ae58fc5d
......@@ -149,7 +149,7 @@ inline void FileOpenPanel::BuildOldPanel()
/** END of QFileDialog tweaking **/
// Add the DialogBox to the layout
ui.gridLayout_3->addWidget( dialogBox, 0, 0, 1, 3 );
ui.gridLayout->addWidget( dialogBox, 0, 0, 1, 3 );
CONNECT( lineFileEdit, textChanged( QString ), this, updateMRL() );
dialogBox->installEventFilter( this );
......
......@@ -20,7 +20,7 @@
<property name="windowTitle">
<string>Open File</string>
</property>
<layout class="QGridLayout" name="gridLayout_3">
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QGroupBox" name="tempWidget">
<property name="toolTip">
......@@ -29,7 +29,7 @@
<property name="title">
<string>File Selection</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<layout class="QGridLayout" name="gridLayout1">
<item row="0" column="0" colspan="3">
<widget class="QLabel" name="label">
<property name="text">
......@@ -106,7 +106,7 @@
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<layout class="QGridLayout" name="gridLayout2">
<item row="1" column="0">
<spacer>
<property name="orientation">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment