Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Kate
Commits
43dd3df3
Commit
43dd3df3
authored
Feb 14, 2022
by
Waqar Ahmed
Browse files
Remove useless member variable
parent
7a522a67
Pipeline
#137182
passed with stage
in 2 minutes and 30 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
kate/kateurlbar.cpp
View file @
43dd3df3
...
...
@@ -410,12 +410,12 @@ KateUrlBar::KateUrlBar(KateViewSpace *parent)
setFixedHeight
(
24
);
setContentsMargins
({});
m_
layout
=
new
QHBoxLayout
(
this
);
m_
layout
->
setContentsMargins
({});
m_
layout
->
setSpacing
(
0
);
auto
*
layout
=
new
QHBoxLayout
(
this
);
layout
->
setContentsMargins
({});
layout
->
setSpacing
(
0
);
m_breadCrumbView
=
new
BreadCrumbView
(
this
);
m_
layout
->
addWidget
(
m_breadCrumbView
);
layout
->
addWidget
(
m_breadCrumbView
);
auto
*
vm
=
parent
->
viewManger
();
connect
(
vm
,
&
KateViewManager
::
viewChanged
,
this
,
&
KateUrlBar
::
onViewChanged
);
...
...
kate/kateurlbar.h
View file @
43dd3df3
...
...
@@ -19,7 +19,6 @@ Q_SIGNALS:
private:
void
onViewChanged
(
KTextEditor
::
View
*
v
);
class
QHBoxLayout
*
m_layout
;
class
BreadCrumbView
*
m_breadCrumbView
;
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment