From 75e9a6025c486e3ff57808e854de2d71dae198c3 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Wed, 5 Sep 2012 16:20:25 -0500 Subject: copyediting: text formatting to make the icon list more readable --- tests/test-device.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/test-device.cc b/tests/test-device.cc index 2c88ea1..728010d 100644 --- a/tests/test-device.cc +++ b/tests/test-device.cc @@ -252,9 +252,12 @@ TEST_F(DeviceTest, IconNames) g_object_set (o, INDICATOR_POWER_DEVICE_KIND, UP_DEVICE_KIND_BATTERY, INDICATOR_POWER_DEVICE_STATE, UP_DEVICE_STATE_FULLY_CHARGED, NULL); - check_icon_names (device, "battery-full-charged-symbolic;battery-full-charging-symbolic;" - "gpm-battery-full;gpm-battery-100;" - "battery-full-charged;battery-full-charging"); + check_icon_names (device, "battery-full-charged-symbolic;" + "battery-full-charging-symbolic;" + "gpm-battery-full;" + "gpm-battery-100;" + "battery-full-charged;" + "battery-full-charging"); // charging battery, 95% g_object_set (o, INDICATOR_POWER_DEVICE_KIND, UP_DEVICE_KIND_BATTERY, -- cgit v1.2.3 From a94288f2040965815eb2345b940a736632a06aaa Mon Sep 17 00:00:00 2001 From: Lars Uebernickel Date: Thu, 20 Sep 2012 10:25:00 +0200 Subject: device.c: include gi18n-lib.h instead of gi18n.h The former calls the 'd' variants of the gettext functions and passes the libraries domain in each call. --- src/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device.c b/src/device.c index c22aae8..078c7a4 100644 --- a/src/device.c +++ b/src/device.c @@ -25,7 +25,7 @@ License along with this library. If not, see #include "config.h" #endif -#include +#include #include "device.h" -- cgit v1.2.3