aboutsummaryrefslogtreecommitdiff
path: root/tests/test-clock.cpp
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-02-02 15:29:29 -0600
committerCharles Kerr <charles.kerr@canonical.com>2014-02-02 15:29:29 -0600
commit33425752728cef43c566a2ace5a54a3a31f6b36f (patch)
tree676726b5f8f334f4ac37a6ad92697889e8137f04 /tests/test-clock.cpp
parent835daa7778171256a02d8695776d0b8262b7b637 (diff)
downloadayatana-indicator-datetime-33425752728cef43c566a2ace5a54a3a31f6b36f.tar.gz
ayatana-indicator-datetime-33425752728cef43c566a2ace5a54a3a31f6b36f.tar.bz2
ayatana-indicator-datetime-33425752728cef43c566a2ace5a54a3a31f6b36f.zip
copyediting: use 'nullptr' instead of 'NULL' in c++ source
Diffstat (limited to 'tests/test-clock.cpp')
-rw-r--r--tests/test-clock.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-clock.cpp b/tests/test-clock.cpp
index 4287e1c..a4924b3 100644
--- a/tests/test-clock.cpp
+++ b/tests/test-clock.cpp
@@ -37,12 +37,12 @@ class ClockFixture: public TestDBusFixture
void emitPrepareForSleep()
{
g_dbus_connection_emit_signal(g_bus_get_sync(G_BUS_TYPE_SYSTEM, nullptr, nullptr),
- NULL,
+ nullptr,
"/org/freedesktop/login1", // object path
"org.freedesktop.login1.Manager", // interface
"PrepareForSleep", // signal name
g_variant_new("(b)", FALSE),
- NULL);
+ nullptr);
}
};