diff options
author | Brent Hull <[email protected]> | 2013-01-25 02:39:32 -0500 |
---|---|---|
committer | Brent Hull <[email protected]> | 2013-01-25 02:39:32 -0500 |
commit | 1acc3477eeb71505d68b66ac7aa4a796f86fe69c (patch) | |
tree | c4c7950e24d8393980b41c6bd649c450e628a6f2 /mate-dictionary/src/gdict-common.c | |
parent | 3f783bbd74e1f94e97f91829480b32b05b6480c8 (diff) | |
download | mate-utils-1acc3477eeb71505d68b66ac7aa4a796f86fe69c.tar.bz2 mate-utils-1acc3477eeb71505d68b66ac7aa4a796f86fe69c.tar.xz |
Port mate-dictionary (and applet) to Gsettings (main program based on GNOME patch)
Diffstat (limited to 'mate-dictionary/src/gdict-common.c')
-rw-r--r-- | mate-dictionary/src/gdict-common.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/mate-dictionary/src/gdict-common.c b/mate-dictionary/src/gdict-common.c index dfc1dd75..1686a87e 100644 --- a/mate-dictionary/src/gdict-common.c +++ b/mate-dictionary/src/gdict-common.c @@ -187,15 +187,3 @@ gdict_show_gerror_dialog (GtkWindow *parent, g_error_free (error); error = NULL; } - -gchar * -gdict_mateconf_get_string_with_default (MateConfClient *client, - const gchar *key, - const gchar *def) -{ - gchar *val; - - val = mateconf_client_get_string (client, key, NULL); - return val ? val : g_strdup (def); -} - |