Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Weixuan Xiao
kdeconnect-kde
Commits
936d8431
Commit
936d8431
authored
Aug 01, 2013
by
Albert Vaca Cintora
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed sms notification message
parent
81400102
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
daemon/packageinterfaces/notificationpackageinterface.cpp
daemon/packageinterfaces/notificationpackageinterface.cpp
+4
-2
No files found.
daemon/packageinterfaces/notificationpackageinterface.cpp
View file @
936d8431
...
...
@@ -35,7 +35,6 @@ KNotification* NotificationPackageInterface::createNotification(const QString& d
if
(
npType
==
"ringing"
)
{
type
=
"callReceived"
;
icon
=
"call-start"
;
QString
number
=
content
=
"Incoming call from "
+
np
.
get
<
QString
>
(
"phoneNumber"
,
"unknown number"
);
}
else
if
(
npType
==
"missedCall"
)
{
type
=
"missedCall"
;
...
...
@@ -44,7 +43,10 @@ KNotification* NotificationPackageInterface::createNotification(const QString& d
}
else
if
(
npType
==
"sms"
)
{
type
=
"smsReceived"
;
icon
=
"mail-receive"
;
content
=
"SMS received from "
+
np
.
get
<
QString
>
(
"phoneNumber"
,
"unknown number"
);
content
=
"SMS from "
+
np
.
get
<
QString
>
(
"phoneNumber"
,
"unknown number"
)
+
":
\n
"
+
np
.
get
<
QString
>
(
"messageBody"
,
""
);
}
else
if
(
npType
==
"battery"
)
{
type
=
"battery100"
;
icon
=
"battery-100"
;
...
...
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