summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Klapper <a9016009@gmx.de>2010-05-29 03:42:30 +0200
committerAndre Klapper <a9016009@gmx.de>2010-05-29 03:42:30 +0200
commit6d9294461935516991082e535a09b28d27105abe (patch)
treefe107cd9b6380fd84deba125b300de81be6e7d51
parent2d140007d1b9b541d922ceda04439c17bce70fd9 (diff)
downloadnautilus-sendto-6d9294461935516991082e535a09b28d27105abe.tar.gz
Compile with -DGSEAL_ENABLE. Fixes bug 612493.
-rw-r--r--src/nautilus-sendto-command.c2
-rw-r--r--src/plugins/evolution/e-contact-entry.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nautilus-sendto-command.c b/src/nautilus-sendto-command.c
index 094fe62..674d774 100644
--- a/src/nautilus-sendto-command.c
+++ b/src/nautilus-sendto-command.c
@@ -335,7 +335,7 @@ static void
send_if_no_pack_cb (GtkWidget *widget, NS_ui *ui)
{
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (ui->pack_checkbutton))) {
- if (GTK_WIDGET_IS_SENSITIVE (ui->pack_entry)) {
+ if (gtk_widget_is_sensitive (ui->pack_entry)) {
gtk_widget_grab_focus (ui->pack_entry);
} else {
gtk_widget_grab_focus (ui->pack_checkbutton);
diff --git a/src/plugins/evolution/e-contact-entry.c b/src/plugins/evolution/e-contact-entry.c
index 69ffa3d..e190290 100644
--- a/src/plugins/evolution/e-contact-entry.c
+++ b/src/plugins/evolution/e-contact-entry.c
@@ -385,7 +385,7 @@ entry_changed_cb (GtkEditable *editable, gpointer user_data)
EContactEntry *entry;
entry = E_CONTACT_ENTRY (editable);
- if (GTK_ENTRY (editable)->text_length >= entry->priv->lookup_length) {
+ if (gtk_entry_get_text_length (GTK_ENTRY (editable)) >= entry->priv->lookup_length) {
GList *l;
EBookQuery *query;