mirror of
https://github.com/KDE/konsole.git
synced 2026-05-24 22:45:39 -04:00
Declare pointer and reference in a consistent way
Most code use the "const QString& text" form, instead of the "const QString &text" form. So change the minority to be consistent with the majority.
This commit is contained in:
@@ -853,7 +853,7 @@ StackedViewContainer::StackedViewContainer(QObject* parent)
|
||||
: ViewContainer(NavigationPositionTop,parent)
|
||||
{
|
||||
_containerWidget = new QWidget;
|
||||
QVBoxLayout *layout = new QVBoxLayout(_containerWidget);
|
||||
QVBoxLayout* layout = new QVBoxLayout(_containerWidget);
|
||||
|
||||
_stackWidget = new QStackedWidget(_containerWidget);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user