/**
  * Set Store scope for collection
  *
  * @param mixed $store
  * @return Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Collection
  */
 public function setStore($store)
 {
     parent::setStore($store);
     if ($this->isEnabledFlat()) {
         $this->getEntity()->setStoreId($this->getStoreId());
     }
     return $this;
 }