Skip to content
Snippets Groups Projects
Commit 49e8a187 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

WRG: shadow warning

parent e3dddf77
No related branches found
No related tags found
No related merge requests found
...@@ -72,14 +72,14 @@ QtWidgetParameterList ...@@ -72,14 +72,14 @@ QtWidgetParameterList
// //
// Global Layout // Global Layout
QGridLayout * layout = new QGridLayout(); QGridLayout * gLayout = new QGridLayout();
layout->setSpacing( 1 ); gLayout->setSpacing( 1 );
layout->setContentsMargins( 2, 2, 2, 2 ); gLayout->setContentsMargins( 2, 2, 2, 2 );
layout->addWidget( widget ); gLayout->addWidget( widget );
setLayout( layout ); setLayout( gLayout );
// //
// Connections. // Connections.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment