Не могу понять почему этот код не рисует линию........может что не правильно........
ops: #include #include #include #include #include int main (int argc, char **argv){ QApplication a(argc, argv); QWidget *w = new QWidget(0, 0, 0); w->setPalette(QPalette(QColor(0, 0, 255))); QPainter p; QBrush brush(QColor(255,0,0)); QPen pen(QColor(255,0,0), 2); p.begin(w); p.setBrush(brush); p.setPen(pen); p.drawLine(10,20,60,60); p.end(); a.setMainWidget(w); w->show(); return a.exec();}За ранее спасибо.