summaryrefslogtreecommitdiff
path: root/src/trg-remote-prefs-dialog.c
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2011-10-26 21:46:25 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2011-10-26 21:46:25 +0000
commit845e13a3c814a4b7f7ef31b1bcd26537f05f0eee (patch)
tree4268682f939cadaefc418ccfb2583fc44e1b19a9 /src/trg-remote-prefs-dialog.c
parentaff982298fb16ef8bbf32697df59965def50eb5d (diff)
add missing terminators to gtr_combo_box_new_enum
Diffstat (limited to 'src/trg-remote-prefs-dialog.c')
-rw-r--r--src/trg-remote-prefs-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trg-remote-prefs-dialog.c b/src/trg-remote-prefs-dialog.c
index c706b72..8f869dd 100644
--- a/src/trg-remote-prefs-dialog.c
+++ b/src/trg-remote-prefs-dialog.c
@@ -293,7 +293,7 @@ static GtkWidget *trg_rprefs_connPage(TrgRemotePrefsDialog * win,
t = hig_workarea_create();
w = priv->encryption_combo = gtr_combo_box_new_enum(_("Required"), 0,
- _("Preferred"), 1, _("Tolerated"), 2);
+ _("Preferred"), 1, _("Tolerated"), 2, NULL);
stringValue = session_get_encryption(s);
if (g_strcmp0(stringValue, "required") == 0) {
gtk_combo_box_set_active(GTK_COMBO_BOX(w), 0);