I would like to setProperty "model" of a CellRendererCombo.

        auto listStoreManufacturers = new ListStore([GType.STRING]);

        void addManufacturer(string name)
        {
            TreeIter iter = listStoreManufacturers.createIter();
            listStoreManufacturers.setValue(iter, 0, name);
        }

        string[] manufacturers = ["Sony", "LG", "Panasonic", "Nokia", "Samsung", "Toshiba"];

        foreach (manufacturer; manufacturers)
        {
            addManufacturer(manufacturer);
        }

        auto rendererCombo = new CellRendererCombo();
        rendererCombo.setProperty("editable", true);
        rendererCombo.setProperty("model", listStoreManufacturers);

But setProperty is not callable using argument types (string, Liststore)

Is there a way to setProperty "model" of cellrenderercombo?