[ekiga] Fix compilation errors introduced right before
- From: Eugen Dedu <ededu src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ekiga] Fix compilation errors introduced right before
- Date: Tue, 11 Jan 2011 00:14:17 +0000 (UTC)
commit 32e87a994c93b0e7c126041e40fc69dd673b07ff
Author: Eugen Dedu <Eugen Dedu pu-pm univ-fcomte fr>
Date: Tue Jan 11 01:13:42 2011 +0100
Fix compilation errors introduced right before
src/gui/assistant.cpp | 4 ++--
src/gui/preferences.cpp | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/gui/assistant.cpp b/src/gui/assistant.cpp
index 470fae3..b4a14c4 100644
--- a/src/gui/assistant.cpp
+++ b/src/gui/assistant.cpp
@@ -622,7 +622,7 @@ create_ekiga_net_page (EkigaAssistant *assistant)
g_signal_connect (button, "clicked",
G_CALLBACK (ekiga_net_button_clicked_cb), NULL);
- assistant->priv->skip_ekiga_net = gtk_check_button_new (_("I do not want to sign up for the ekiga.net free service"));
+ assistant->priv->skip_ekiga_net = gtk_check_button_new_with_label (_("I do not want to sign up for the ekiga.net free service"));
align = gtk_alignment_new (0, 1.0, 0, 0);
gtk_container_add (GTK_CONTAINER (align), assistant->priv->skip_ekiga_net);
gtk_box_pack_start (GTK_BOX (vbox), align, TRUE, TRUE, 0);
@@ -762,7 +762,7 @@ create_ekiga_out_page (EkigaAssistant *assistant)
g_signal_connect (button, "clicked",
G_CALLBACK (ekiga_out_history_calls_clicked_cb), assistant);
- assistant->priv->skip_ekiga_out = gtk_check_button_new (_("I do not want to sign up for the Ekiga Call Out service"));
+ assistant->priv->skip_ekiga_out = gtk_check_button_new_with_label (_("I do not want to sign up for the Ekiga Call Out service"));
align = gtk_alignment_new (0, 1.0, 0, 0);
gtk_container_add (GTK_CONTAINER (align), assistant->priv->skip_ekiga_out);
gtk_box_pack_start (GTK_BOX (vbox), align, TRUE, TRUE, 0);
diff --git a/src/gui/preferences.cpp b/src/gui/preferences.cpp
index 3643b55..e463268 100644
--- a/src/gui/preferences.cpp
+++ b/src/gui/preferences.cpp
@@ -417,7 +417,7 @@ gm_pw_add_update_button (GtkWidget *box,
/* Update Button */
button = gtk_button_new_with_mnemonic (label);
image = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_BUTTON);
- gtk_button_set_image ((GTK_BUTTON) button, image);
+ gtk_button_set_image (GTK_BUTTON (button), image);
gtk_widget_set_tooltip_text (button, tooltip);
alignment = gtk_alignment_new (1, valign, 0, 0);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]