diff options
author | Dave Reisner <dreisner@archlinux.org> | 2013-03-16 23:24:36 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2013-04-10 10:12:43 -0400 |
commit | 230a127bc8fdf638a0ecccecf43cfed425f30468 (patch) | |
tree | b1d202583f5ffcf07e3ff46d79ca300e3fcb1b66 | |
parent | 7d987d2d5e18d60a3faa84edff8f9738ac90f068 (diff) | |
download | mirror-ponymix-230a127bc8fdf638a0ecccecf43cfed425f30468.tar.gz mirror-ponymix-230a127bc8fdf638a0ecccecf43cfed425f30468.tar.bz2 mirror-ponymix-230a127bc8fdf638a0ecccecf43cfed425f30468.zip |
Favor nullptr over NULL
-rw-r--r-- | notify.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ class LibnotifyNotifier : public Notifier { notify_notification_set_urgency(notification, NOTIFY_URGENCY_NORMAL); notify_notification_set_hint_int32(notification, "value", vol); notify_notification_set_hint_string(notification, "synchronous", "volume"); - notify_notification_show(notification, NULL); + notify_notification_show(notification, nullptr); g_object_unref(G_OBJECT(notification)); } }; |