aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/src/homescreenvoice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'homescreen/src/homescreenvoice.cpp')
-rw-r--r--homescreen/src/homescreenvoice.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/homescreen/src/homescreenvoice.cpp b/homescreen/src/homescreenvoice.cpp
index 4a376e1..f56625e 100644
--- a/homescreen/src/homescreenvoice.cpp
+++ b/homescreen/src/homescreenvoice.cpp
@@ -206,17 +206,19 @@ void HomescreenVoice::on_event(void *closure, const char *event, struct afb_wsj1
return;
}
- const char* corestatus = json_object_get_string(json_state);
+ const char* info = json_object_get_string(json_state);
- if (strcasecmp(corestatus, HomescreenVoice::state_lists[0].c_str()) == 0) {
+ if (strcasecmp(info, HomescreenVoice::state_lists[0].c_str()) == 0) {
emit statusChanged(true);
}
- else if ((strcasecmp(corestatus, HomescreenVoice::state_lists[1].c_str()) == 0)||
- (strcasecmp(corestatus, HomescreenVoice::state_lists[2].c_str()) == 0)||
- (strcasecmp(corestatus, HomescreenVoice::state_lists[3].c_str()) == 0)||
- (strcasecmp(corestatus, HomescreenVoice::state_lists[4].c_str()) == 0)){
+ else if ((strcasecmp(info, HomescreenVoice::state_lists[1].c_str()) == 0)||
+ (strcasecmp(info, HomescreenVoice::state_lists[2].c_str()) == 0)||
+ (strcasecmp(info, HomescreenVoice::state_lists[3].c_str()) == 0)||
+ (strcasecmp(info, HomescreenVoice::state_lists[4].c_str()) == 0)){
emit statusChanged(false);
}
+
+ emit showInformation(QString(QLatin1String(info)));
}
/**