diff options
author | Slava Monich <slava.monich@jolla.com> | 2014-01-11 13:32:10 +0200 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2014-01-13 10:19:54 -0600 |
commit | c2e58405ee41190f18d6588c1626ba8dfd2a3a7e (patch) | |
tree | 2123cbf89148f07c6bbd1febb5aea5d2bb10163e /include | |
parent | e99e52e5de15d9bd691e4a27e286079d3b1967e9 (diff) |
include: Be more const-correct in ofono_dbus_*
Diffstat (limited to 'include')
-rw-r--r-- | include/dbus.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/dbus.h b/include/dbus.h index e7ccb0b4..3d39eff4 100644 --- a/include/dbus.h +++ b/include/dbus.h @@ -77,29 +77,29 @@ extern "C" { DBusConnection *ofono_dbus_get_connection(void); void ofono_dbus_dict_append(DBusMessageIter *dict, const char *key, int type, - void *value); + const void *value); void ofono_dbus_dict_append_array(DBusMessageIter *dict, const char *key, - int type, void *val); + int type, const void *val); void ofono_dbus_dict_append_dict(DBusMessageIter *dict, const char *key, - int type, void *val); + int type, const void *val); int ofono_dbus_signal_property_changed(DBusConnection *conn, const char *path, const char *interface, const char *name, - int type, void *value); + int type, const void *value); int ofono_dbus_signal_array_property_changed(DBusConnection *conn, const char *path, const char *interface, const char *name, int type, - void *value); + const void *value); int ofono_dbus_signal_dict_property_changed(DBusConnection *conn, const char *path, const char *interface, const char *name, int type, - void *value); + const void *value); #ifdef __cplusplus } |