aboutsummaryrefslogtreecommitdiff
path: root/src/notifications.cpp
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-09-17 12:08:01 -0500
committerCharles Kerr <charles.kerr@canonical.com>2014-09-17 12:08:01 -0500
commit894b2e4a09e674df21e5c0024eab8bd4626c5a9f (patch)
tree8049313f0caa7bc8026b83e96be80d54ff13abff /src/notifications.cpp
parent790f43bcea23f926f6617e0fe41026a3adaee8cc (diff)
downloadayatana-indicator-datetime-894b2e4a09e674df21e5c0024eab8bd4626c5a9f.tar.gz
ayatana-indicator-datetime-894b2e4a09e674df21e5c0024eab8bd4626c5a9f.tar.bz2
ayatana-indicator-datetime-894b2e4a09e674df21e5c0024eab8bd4626c5a9f.zip
work around a notifications bug that can't handle boolean hints
Diffstat (limited to 'src/notifications.cpp')
-rw-r--r--src/notifications.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notifications.cpp b/src/notifications.cpp
index 18f15d9..58a6e83 100644
--- a/src/notifications.cpp
+++ b/src/notifications.cpp
@@ -198,7 +198,7 @@ public:
{
notify_notification_set_hint (nn.get(),
hint.c_str(),
- g_variant_new_boolean(true));
+ g_variant_new_string("true"));
}
for (const auto& action : info.m_actions)