summaryrefslogtreecommitdiff
path: root/meego/meego-im-connector.c
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2012-08-17 17:01:05 +0200
committerJavier S. Pedro <maemo@javispedro.com>2012-08-17 17:01:05 +0200
commit3c643c4f48179643cdb7d486aa19b3c2bd76176f (patch)
tree4252fe59899ca6dffe39ab04ce5baafac9f55d1c /meego/meego-im-connector.c
parentab14024d10c136a50348caf4faacfa655e57a9c1 (diff)
downloadxmimd-3c643c4f48179643cdb7d486aa19b3c2bd76176f.tar.gz
xmimd-3c643c4f48179643cdb7d486aa19b3c2bd76176f.zip
adding new translucent option, release 1.2
Diffstat (limited to 'meego/meego-im-connector.c')
-rw-r--r--meego/meego-im-connector.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/meego/meego-im-connector.c b/meego/meego-im-connector.c
index c1ca0de..00726a8 100644
--- a/meego/meego-im-connector.c
+++ b/meego/meego-im-connector.c
@@ -80,10 +80,16 @@ get_dbus_address()
G_TYPE_STRING, MALIIT_SERVER_ADDRESS_PROPERTY,
G_TYPE_INVALID,
G_TYPE_VALUE, &value, G_TYPE_INVALID)) {
+ if (error) {
+ g_warning("%s: %s", __PRETTY_FUNCTION__, error->message);
+ g_error_free(error);
+ } else {
+ g_warning("%s: Could not call the Maliit address server",
+ __PRETTY_FUNCTION__);
+ }
- g_warning("%s: %s", __PRETTY_FUNCTION__, error->message);
- g_error_free(error);
// Let's try PR1.2 address if PR1.3/Maliit was not found.
+ g_debug("%s: Could not obtain Maliit server address, trying old address");
return g_strdup(MEEGO_IM_SOCKET_PATH);
}