SVN commit 453238 by wgreven: Don't prefix a local variable with an underscore. M +4 -4 panelextension.cpp --- trunk/KDE/kdebase/kicker/kicker/core/panelextension.cpp #453237:453238 @@ -66,18 +66,18 @@ m_addExtensionMenu(0), m_removeExtensionMenu(0), m_configFile(configFile), - m_opMenuBuilt( false ) + m_opMenuBuilt(false) { setAcceptDrops(!Kicker::self()->isImmutable()); setCustomMenu( opMenu() ); - QVBoxLayout* _layout = new QVBoxLayout(this); - _layout->setMargin(0); + QVBoxLayout* layout = new QVBoxLayout(this); + layout->setMargin(0); // container area _containerArea = new ContainerArea( config(), this, opMenu() ); connect(_containerArea, SIGNAL(maintainFocus(bool)), this, SIGNAL(maintainFocus(bool))); - _layout->addWidget(_containerArea); + layout->addWidget(_containerArea); _containerArea->setFrameStyle(QFrame::NoFrame); _containerArea->viewport()->installEventFilter(this);