bool field treeview / Windows problem



Hi,

I have a problem with the bool field inside treeview when i compile the application for Windows. It does not appear correctly, true or false is showed.

Here is the TreeModel used

class GeneralModel_12_Columns : public Gtk::TreeModel::ColumnRecord
{
 public:
 
  GeneralModel_12_Columns()
    {
      add(m_sUsername);
      add(m_bContacts);
      add(m_bClients);
      add(m_bEmployees);
      add(m_bSuppliers);
      add(m_bStock);
      add(m_bProducts);
      add(m_bServices);
      add(m_bPurchases);
      add(m_bFinancier);
      add(m_bReports);
      add(m_bConfiguration);
    }
 
  Gtk::TreeModelColumn<Glib::ustring> m_sUsername; 
  Gtk::TreeModelColumn<bool> m_bContacts;
  Gtk::TreeModelColumn<bool> m_bClients;
  Gtk::TreeModelColumn<bool> m_bEmployees;
  Gtk::TreeModelColumn<bool> m_bSuppliers;
  Gtk::TreeModelColumn<bool> m_bStock;
  Gtk::TreeModelColumn<bool> m_bProducts; 
  Gtk::TreeModelColumn<bool> m_bServices;
  Gtk::TreeModelColumn<bool> m_bPurchases;
  Gtk::TreeModelColumn<bool> m_bFinancier;
  Gtk::TreeModelColumn<bool> m_bReports;
  Gtk::TreeModelColumn<bool> m_bConfiguration;
};


 
Luís Carlos Dill Junges ©
 


Yahoo! Acesso Grátis
Internet rápida e grátis. Instale o discador agora!

[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]