дает в этом месте вот такую ошибку (в других местах все норм )This application has requested the runtime to terninate it in an unusual way.Код:#include #include #include #include typedef QVector QStrings;class CResource{public: CResource() : uCountLastElement(0) {} bool getImages(unsigned id , QPixmap &image); unsigned setImages(QPixmap _im); bool loadImages(QStrings files); unsigned getSize() const {return uCountLastElement;} void clear();private: QPixmap pix; unsigned uCountLastElement; QMap _pixmap;};Почему такая ошибка ((( обьясните пож
|