Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Thomas Schöps
kdevelop
Commits
0f21717e
Commit
0f21717e
authored
Aug 11, 2019
by
David Redondo
🏎
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '5.4'
parents
464f2115
8c8c7b41
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
plugins/grepview/grepoutputview.cpp
plugins/grepview/grepoutputview.cpp
+7
-2
No files found.
plugins/grepview/grepoutputview.cpp
View file @
0f21717e
...
...
@@ -77,8 +77,13 @@ GrepOutputView::GrepOutputView(QWidget* parent, GrepViewPlugin* plugin)
m_prev
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"go-previous"
)),
i18n
(
"&Previous Item"
),
this
);
m_next
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"go-next"
)),
i18n
(
"&Next Item"
),
this
);
m_collapseAll
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"arrow-left-double"
)),
i18n
(
"C&ollapse All"
),
this
);
// TODO change icon
m_expandAll
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"arrow-right-double"
)),
i18n
(
"&Expand All"
),
this
);
// TODO change icon
/* Expand-all and collapse-all icons were added to breeze with version 5.57. We use a fallback
* icon here because we support older frameworks versions and oxygen doesn't have such an icon
*/
m_collapseAll
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"collapse-all"
),
QIcon
::
fromTheme
(
QStringLiteral
(
"arrow-right-double"
))),
i18n
(
"C&ollapse All"
),
this
);
m_expandAll
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"expand-all"
),
QIcon
::
fromTheme
(
QStringLiteral
(
"arrow-right-double"
))),
i18n
(
"&Expand All"
),
this
);
updateButtonState
(
false
);
auto
*
separator
=
new
QAction
(
this
);
separator
->
setSeparator
(
true
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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