[ekiga] Put the arguments in the right order when building a private text field in the gtk+ forms...
- From: Julien Puydt <jpuydt src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ekiga] Put the arguments in the right order when building a private text field in the gtk+ forms...
- Date: Thu, 17 Feb 2011 20:03:20 +0000 (UTC)
commit f1824e0b80c71cfbd957f0d89a390a01e5fb0da1
Author: Snark <jpuydt gnome org>
Date: Thu Feb 17 21:04:28 2011 +0100
Put the arguments in the right order when building a private text field in the gtk+ forms...
lib/engine/gui/gtk-core/form-dialog-gtk.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/lib/engine/gui/gtk-core/form-dialog-gtk.cpp b/lib/engine/gui/gtk-core/form-dialog-gtk.cpp
index 85ebdd7..3734188 100644
--- a/lib/engine/gui/gtk-core/form-dialog-gtk.cpp
+++ b/lib/engine/gui/gtk-core/form-dialog-gtk.cpp
@@ -267,9 +267,9 @@ public:
void submit (Ekiga::FormBuilder &builder)
{
- builder.private_text (name, description, tooltip,
+ builder.private_text (name, description,
gtk_entry_get_text (GTK_ENTRY (widget)),
- advanced);
+ tooltip, advanced);
}
private:
@@ -881,8 +881,8 @@ FormDialog::text (const std::string name,
void
FormDialog::private_text (const std::string name,
const std::string description,
- const std::string tooltip,
const std::string value,
+ const std::string tooltip,
bool advanced)
{
GtkWidget *label = NULL;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]