X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;ds=sidebyside;f=hildon%2Fhildon-get-password-dialog.c;h=e25c4ab3f084477f97a2a36e39fe4c4095e82d67;hb=ecf300748aa59210d2b65a1a1e446fd1b2386dea;hp=c7d993f7c858082361d0ea8b0f2f56602e1aaad7;hpb=69a11338fe0cc36a868e5812b590f5437622988a;p=hildon diff --git a/hildon/hildon-get-password-dialog.c b/hildon/hildon-get-password-dialog.c index c7d993f..e25c4ab 100644 --- a/hildon/hildon-get-password-dialog.c +++ b/hildon/hildon-get-password-dialog.c @@ -1,7 +1,7 @@ /* * This file is a part of hildon * - * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved. + * Copyright (C) 2005, 2006, 2009 Nokia Corporation, all rights reserved. * * Contact: Rodrigo Novo * @@ -168,7 +168,7 @@ hildon_get_password_set_property (GObject *object, break; case PROP_PASSWORD: - hildon_entry_set_text(HILDON_ENTRY (gtk_bin_get_child (GTK_BIN (priv->password_entry))), + gtk_entry_set_text (GTK_ENTRY (gtk_bin_get_child (GTK_BIN (priv->password_entry))), g_value_get_string(value)); break; @@ -228,7 +228,7 @@ hildon_get_password_get_property (GObject *object, break; case PROP_PASSWORD: - string = hildon_entry_get_text (HILDON_ENTRY (gtk_bin_get_child (GTK_BIN (priv->password_entry)))); + string = gtk_entry_get_text (GTK_ENTRY (gtk_bin_get_child (GTK_BIN (priv->password_entry)))); g_value_set_string (value, string); break;