Advertisement
Guest User

Untitled

a guest
Feb 28th, 2013
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. table::table(QWidget *parent) :
  2.     QWidget(parent)
  3. {
  4.     pulsmenu();
  5.  
  6.     layoutGrafo = new QVBoxLayout;
  7.  
  8.     datiGrafo = new QTableWidget(4,2,this);
  9.     datiGrafo->setHorizontalHeaderLabels(QStringList()<<"Description"<<"Value");
  10.     layoutGrafo->addWidget(datiGrafo);
  11.     layoutGrafo->addLayout(addremove);
  12.     setLayout(layoutGrafo);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement