summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-05-18 12:20:18 +0100
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-05-19 11:02:06 +0100
commit4e5b9ef6ef5bd395d603e065cd2ac576bcd10df2 (patch)
tree018c36436cc0910df9a4c45118b8c09ef82c75b2
parent91d9f43ff5feb6380a2c673da115763cfe90834e (diff)
downloadempathy-4e5b9ef6ef5bd395d603e065cd2ac576bcd10df2.tar.gz
Disable textview themes
-rw-r--r--src/empathy-preferences.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-preferences.c b/src/empathy-preferences.c
index 89133edb5..c24eff4da 100644
--- a/src/empathy-preferences.c
+++ b/src/empathy-preferences.c
@@ -750,9 +750,7 @@ preferences_themes_setup (EmpathyPreferences *preferences)
GtkCellLayout *cell_layout;
GtkCellRenderer *renderer;
GtkListStore *store;
- const gchar **themes;
GList *adium_themes;
- gint i;
combo = GTK_COMBO_BOX (priv->combobox_chat_theme);
cell_layout = GTK_CELL_LAYOUT (combo);
@@ -767,6 +765,7 @@ preferences_themes_setup (EmpathyPreferences *preferences)
COL_COMBO_VISIBLE_NAME, GTK_SORT_ASCENDING);
/* Fill the model */
+#if 0
themes = empathy_theme_manager_get_themes ();
for (i = 0; themes[i]; i += 2) {
gtk_list_store_insert_with_values (store, NULL, -1,
@@ -776,6 +775,7 @@ preferences_themes_setup (EmpathyPreferences *preferences)
COL_COMBO_PATH, NULL,
-1);
}
+#endif
adium_themes = empathy_theme_manager_get_adium_themes ();
while (adium_themes != NULL) {