Re: bool field treeview / Windows problem
- From: "Cedric Gustin" <cedric gustin gmail com>
- To: "Luis Carlos Junges" <lcdjunges yahoo com br>
- Cc: gtkmm-list gnome org
- Subject: Re: bool field treeview / Windows problem
- Date: Fri, 10 Mar 2006 09:17:24 +0100
Hi,
Could you please create a new bugzilla entry for this problem with
1. The version of gtkmm you use
2. The version of the mingw32-gcc (or MSVC if relevant) compiler
3. A simple testcase that reproduces the problem.
4. Add me to the CC: list for this bug (cedric gustin gmail com)
Thanks !
Cedric
On 3/10/06, Luis Carlos Junges <lcdjunges yahoo com br> wrote:
> 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;
> };
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]