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
Plasma
Plasma Workspace
Commits
f0416969
Commit
f0416969
authored
Nov 11, 2020
by
Konrad Materka
Browse files
Remove unused arguments from QML slot
parent
1e791009
Changes
3
Hide whitespace changes
Inline
Side-by-side
applets/devicenotifier/package/contents/ui/FullRepresentation.qml
View file @
f0416969
...
...
@@ -116,7 +116,7 @@ PlasmaComponents3.Page {
Connections
{
target
:
plasmoid
function
onExpandedChanged
(
expanded
)
{
function
onExpandedChanged
()
{
if
(
!
plasmoid
.
expanded
)
{
statusSource
.
clearMessage
();
}
...
...
applets/mediacontroller/contents/ui/ExpandedRepresentation.qml
View file @
f0416969
...
...
@@ -59,7 +59,7 @@ PlasmaComponents3.Page {
Connections
{
target
:
plasmoid
function
onExpandedChanged
(
expanded
)
{
function
onExpandedChanged
()
{
if
(
plasmoid
.
expanded
)
{
retrievePosition
();
}
...
...
applets/notifications/package/contents/ui/FullRepresentation.qml
View file @
f0416969
...
...
@@ -49,7 +49,7 @@ PlasmaComponents3.Page {
Connections
{
target
:
plasmoid
function
onExpandedChanged
(
expanded
)
{
function
onExpandedChanged
()
{
if
(
plasmoid
.
expanded
)
{
list
.
positionViewAtBeginning
();
list
.
currentIndex
=
-
1
;
...
...
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