Module: synfig
Branch: genete_setup_dialog
Commit: ed01e07e5df0c7a99b97b16e3e892e8f2cc98a9e
URL:    
http://synfig.git.sourceforge.net/git/gitweb.cgi?p=synfig;a=commit;h=ed01e07e5df0c7a99b97b16e3e892e8f2cc98a9e

Author: Carlos Lopez <car...@pcnuevo.(none)>
Date:   Thu Jun 18 00:58:43 2009 +0200

Assure to call Gtk::manage instead of any other version.

---

 synfig-studio/trunk/src/gtkmm/dialog_setup.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/synfig-studio/trunk/src/gtkmm/dialog_setup.cpp 
b/synfig-studio/trunk/src/gtkmm/dialog_setup.cpp
index 175ab36..3931dd3 100644
--- a/synfig-studio/trunk/src/gtkmm/dialog_setup.cpp
+++ b/synfig-studio/trunk/src/gtkmm/dialog_setup.cpp
@@ -228,13 +228,13 @@ Dialog_Setup::Dialog_Setup():
        tooltips_.set_tip(textbox_custom_filename_prefix,_("File name prefix 
for the new created document"));
 
        // Document - New Document X size
-       Gtk::SpinButton* pref_x_size_spinbutton(manage(new 
Gtk::SpinButton(adj_pref_x_size,1,0)));
+       Gtk::SpinButton* pref_x_size_spinbutton(Gtk::manage(new 
Gtk::SpinButton(adj_pref_x_size,1,0)));
        attach_label(document_table,_("New Document X size"),1, xpadding, 
ypadding);
        document_table->attach(*pref_x_size_spinbutton, 1, 2, 1, 
2,Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, xpadding, ypadding);
        tooltips_.set_tip(*pref_x_size_spinbutton,_("Width in pixels of the new 
created document"));
 
        // Document - New Document Y size
-       Gtk::SpinButton* pref_y_size_spinbutton(manage(new 
Gtk::SpinButton(adj_pref_y_size,1,0)));
+       Gtk::SpinButton* pref_y_size_spinbutton(Gtk::manage(new 
Gtk::SpinButton(adj_pref_y_size,1,0)));
        attach_label(document_table,_("New Document Y size"),2, xpadding, 
ypadding);
        document_table->attach(*pref_y_size_spinbutton, 1, 2, 2, 
3,Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, xpadding, ypadding);
        tooltips_.set_tip(*pref_y_size_spinbutton,_("High in pixels of the new 
created document"));


------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
Synfig-devl mailing list
Synfig-devl@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/synfig-devl

Reply via email to