diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-06-22 16:43:38 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-06-22 21:24:55 +0800 |
commit | 4c782007bf100a3820dc265bca6fceda17991a77 (patch) | |
tree | 6bed62af4f688f2bf5047a36527f343bd0f678eb /src | |
parent | 0f915c44a5e5a2fd91c5b5b26f5a8e5a78ee7ed3 (diff) | |
download | gsoc2013-empathy-4c782007bf100a3820dc265bca6fceda17991a77.tar gsoc2013-empathy-4c782007bf100a3820dc265bca6fceda17991a77.tar.gz gsoc2013-empathy-4c782007bf100a3820dc265bca6fceda17991a77.tar.bz2 gsoc2013-empathy-4c782007bf100a3820dc265bca6fceda17991a77.tar.lz gsoc2013-empathy-4c782007bf100a3820dc265bca6fceda17991a77.tar.xz gsoc2013-empathy-4c782007bf100a3820dc265bca6fceda17991a77.tar.zst gsoc2013-empathy-4c782007bf100a3820dc265bca6fceda17991a77.zip |
Move all data about an adium theme into EmpathyAdiumData struct and share it with all EmpathyThemeAdium instances.
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-preferences.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-preferences.c b/src/empathy-preferences.c index dfdf2a89d..cb087cb30 100644 --- a/src/empathy-preferences.c +++ b/src/empathy-preferences.c @@ -957,7 +957,7 @@ preferences_theme_adium_update_validity (EmpathyPreferences *preferences, const gchar *path) { #ifdef HAVE_WEBKIT - if (empathy_theme_adium_is_valid (path)) { + if (empathy_adium_path_is_valid (path)) { gtk_widget_hide (preferences->label_invalid_adium_theme); } else { gtk_widget_show (preferences->label_invalid_adium_theme); |