[gimp] Only add the language entry if the iso-codes package is available
- From: Sven Neumann <neo src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gimp] Only add the language entry if the iso-codes package is available
- Date: Tue, 4 Aug 2009 20:46:19 +0000 (UTC)
commit 57ceb04b32c7e3b615c4f74c671566da0c7d8438
Author: Sven Neumann <sven gimp org>
Date: Tue Aug 4 22:45:39 2009 +0200
Only add the language entry if the iso-codes package is available
app/tools/gimptextoptions.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/app/tools/gimptextoptions.c b/app/tools/gimptextoptions.c
index a14f700..84efd06 100644
--- a/app/tools/gimptextoptions.c
+++ b/app/tools/gimptextoptions.c
@@ -517,6 +517,9 @@ gimp_text_options_gui (GimpToolOptions *tool_options)
gimp_table_attach_stock (GTK_TABLE (table), row++,
GIMP_STOCK_LETTER_SPACING, spinbutton, 1, TRUE);
+ /* Only add the language entry if the iso-codes package is available. */
+
+#ifdef HAVE_ISO_CODES
vbox = gtk_vbox_new (FALSE, 2);
gtk_box_pack_start (GTK_BOX (main_vbox), vbox, FALSE, FALSE, 0);
gtk_widget_show (vbox);
@@ -532,6 +535,7 @@ gimp_text_options_gui (GimpToolOptions *tool_options)
entry = gimp_prop_language_entry_new (config, "language");
gtk_box_pack_start (GTK_BOX (vbox), entry, FALSE, FALSE, 0);
gtk_widget_show (entry);
+#endif
return main_vbox;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]